diff --git a/docs/notebooks/Evaluation_of_word_embeddings.ipynb b/docs/notebooks/Evaluation_of_word_embeddings.ipynb new file mode 100644 index 0000000000..0d9b323f7d --- /dev/null +++ b/docs/notebooks/Evaluation_of_word_embeddings.ipynb @@ -0,0 +1,406 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "7da5ed4a", + "metadata": {}, + "source": [ + "# How to evaluate word embedding models\n", + "\n", + "The existing state-of-the-art approaches for word embedding evaluation can be divided into two major classes: _intrinsic_ vs _extrinsic_ evaluation.\n", + "\n", + "_Extrinsic metrics_ perform the evaluation by using embeddings as features for specific downstream tasks. For instance, question deduplication, Part-of-Speech (POS) Tagging, Language Modelling, and Named Entity Recognition (NER). As a drawback, extrinsic metrics are:\n", + "1. computationally heavy;\n", + "2. have high complexity of creating gold standard datasets for downstream tasks;\n", + "3. have a lack of performance consistency over different tasks.\n", + "\n", + "_Intrinsic metrics_ evaluate the quality of a vector model per se, independently from specific downstream tasks. They measure syntactic or semantic relationships between words directly, typically using a gold benchmark of semantic similarity between pair of words. \n", + "The gold benchmark can be obtained directly getting human judgements or using automated semantic similarity measures.\n", + "\n", + "Some of the limitations of human annotated benchmarks are:\n", + "1. suffering from word sense ambiguity(faced by a human tester) and subjectivity;\n", + "2. facing difficulties in finding significant differences between models due to the small size and low inter-annotator agreement of existing datasets;\n", + "3. need for constructing judgement datasets for each language and each domain, given that word meanings can change a lot across different domains.\n", + "Moreover, the update and the upscale of handcrafted resources like the similarity human scores are costly, time expensive, and error-prone. \n", + "\n", + "A well-known __intrinsic evaluation method__ is Semantic Relatedness (or Similarity) (see [Baroni et al.](https://aclanthology.org/P14-1023.pdf), [Schnabel et al.](https://aclanthology.org/D15-1036.pdf)\n", + "), which evaluates the performance of a vector model by the correlation between the cosine similarity between pairs of word vectors and the semantic relatedness (or similarity) between them in the gold benchmark.\n", + "\n", + "## Intrinsic evaluations\n", + "\n", + "Gensim provides the possibility to evaluate word embedding models through two of the most used intrinsic evaluation tasks: semantic similarity and word analogy.\n", + "\n", + "You can evaluate your models on those tasks using `evaluate_word_pairs(pairs)` and `evaluate_word_analogies(analogies)`, specifying the benchmark you want to use as the first argument of the function.\n", + "\n", + "### How to evaluate word embedding models with taxonomy‐based semantic similarity measures\n", + "\n", + "The evaluation based on taxonomy‐based semantic similarity measures is another type of intrinsic evaluation, and it exploit the information encoded in an existing taxonomy to build a benchmark for the evaluation of word embeddings.\n", + "\n", + "To perform this type of evaluation you can use the benchmark HSS4570.tsv (you can find it at test/test_data/HSS4570.tsv) through the Gensim function `evaluate_word_pairs()`, which returns:\n", + "\n", + "* the Pearson correlation coefficient with 2-tailed p-value;\n", + "\n", + "* the Spearman rank-order correlation coefficient between the similarities from the dataset and the similarities produced by the model itself, with 2-tailed p-value." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "b765dbcd", + "metadata": {}, + "outputs": [], + "source": [ + "from gensim.models import KeyedVectors\n", + "path_to_model = 'models/ft_vectors_0_10_50_5.txt'\n", + "model = KeyedVectors.load_word2vec_format(path_to_model, binary=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "8df874c1", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "((0.42422276164431727, 4.739561944305236e-193),\n", + " SpearmanrResult(correlation=0.4326345056769725, pvalue=1.508555569557493e-201),\n", + " 3.063457330415755)" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pkgutil\n", + "similarities = model.evaluate_word_pairs('benchmark/HSS4570.tsv', delimiter='\\t')\n", + "similarities" + ] + }, + { + "cell_type": "markdown", + "id": "0ad743a6", + "metadata": {}, + "source": [ + "To perform this evaluation you can also use the library `TaxoSS` to create your benchmark using the taxonomy of your choice that better suits the topic of your work, to select the word embedding model that best encodes the taxonomic relationships between the concepts in the taxonomy.\n", + "\n", + "You can compute the semantic similarity in the following way:\n", + "\n", + "1. create a list of pairs of words for comparison, for example:" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "1c7e24d4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[['cat', 'dog'], ['bird', 'fish'], ['mammal', 'vertebrate']]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "w1 = ['cat', 'bird', 'mammal']\n", + "w2 = ['dog', 'fish', 'vertebrate']\n", + "words = [[x, y] for x, y in zip(w1, w2)]\n", + "words" + ] + }, + { + "cell_type": "markdown", + "id": "c3ec3fd9", + "metadata": {}, + "source": [ + "2. for each pair compute the similarity between the words:" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "23fd5026", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[2.5578320203297156, 1.4267224907237086, 1.4852139609136645]" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from TaxoSS.functions import semantic_similarity\n", + "hss = []\n", + "for w in words:\n", + " hss.append(semantic_similarity(w[0], w[1], 'hss'))\n", + "hss" + ] + }, + { + "cell_type": "markdown", + "id": "372f68bf", + "metadata": {}, + "source": [ + "3. create your benchmark as a dataframe:" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "b15c13f3", + "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", + "
word1word2hss
0catdog2.557832
1birdfish1.426722
2mammalvertebrate1.485214
\n", + "
" + ], + "text/plain": [ + " word1 word2 hss\n", + "0 cat dog 2.557832\n", + "1 bird fish 1.426722\n", + "2 mammal vertebrate 1.485214" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "benchmark = pd.DataFrame({'word1':[x[0] for x in words], 'word2':[x[1] for x in words], 'hss':hss})\n", + "benchmark" + ] + }, + { + "cell_type": "markdown", + "id": "ef05b2d2", + "metadata": {}, + "source": [ + "The function `semantic_similarity(word1, word2, kind, ic)` has these options for the argument `kind`:\n", + "\n", + "* *hss* -> HSS (_default_)\n", + "* *wup* -> WUP\n", + "* *lcs* -> LC\n", + "* *path_sim* -> Shortest Path\n", + "* *resnik* -> Resnik\n", + "* *jcn* -> Jiang-Conrath\n", + "* *lin* -> Lin\n", + "* *seco* -> Seco\n", + "\n", + "You can choose the one you prefer, and to have more information about them see https://link.springer.com/article/10.1007/s12559-021-09987-7.\n", + "\n", + "Now you can evaluate your word embedding model using the benchmark you just created:\n", + "\n", + "1. load your word embedding model:" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "8fd02c40", + "metadata": {}, + "outputs": [], + "source": [ + "from gensim.models import KeyedVectors\n", + "path_to_model = 'models/ft_vectors_0_10_50_5.txt'\n", + "model = KeyedVectors.load_word2vec_format(path_to_model, binary=False)" + ] + }, + { + "cell_type": "markdown", + "id": "ce0d39ad", + "metadata": {}, + "source": [ + "2. compute the cosine similarity for each pair of words in your benchmark in the model" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "47ed31ad", + "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", + "
word1word2hsscosine_similarity
0catdog2.5578320.878396
1birdfish1.4267220.709674
2mammalvertebrate1.4852140.784841
\n", + "
" + ], + "text/plain": [ + " word1 word2 hss cosine_similarity\n", + "0 cat dog 2.557832 0.878396\n", + "1 bird fish 1.426722 0.709674\n", + "2 mammal vertebrate 1.485214 0.784841" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cos_sim = [model.similarity(x, y) for x, y in zip(benchmark.word1, benchmark.word2)]\n", + "benchmark['cosine_similarity'] = cos_sim\n", + "benchmark" + ] + }, + { + "cell_type": "markdown", + "id": "3042410f", + "metadata": {}, + "source": [ + "3. compute the Spearman (or Pearson) correlation between `benchmark['hss']` and `benchmark['cosine_similarity']`:" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "127ceb48", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(0.9151906835681539, 0.2640797648114273)\n", + "SpearmanrResult(correlation=1.0, pvalue=0.0)\n" + ] + } + ], + "source": [ + "import scipy.stats\n", + "print(scipy.stats.pearsonr(benchmark['hss'], benchmark['cosine_similarity']))\n", + "print(scipy.stats.spearmanr(benchmark['hss'], benchmark['cosine_similarity']))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "taxoss", + "language": "python", + "name": "taxoss" + }, + "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.8.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/gensim/models/keyedvectors.py b/gensim/models/keyedvectors.py index 0dd043c2df..5de72b9c57 100644 --- a/gensim/models/keyedvectors.py +++ b/gensim/models/keyedvectors.py @@ -1422,19 +1422,22 @@ def log_evaluate_word_pairs(pearson, spearman, oov, pairs): def evaluate_word_pairs( self, pairs, delimiter='\t', restrict_vocab=300000, case_insensitive=True, dummy4unknown=False, ): - """Compute correlation of the model with human similarity judgments. + """Compute correlation of the model with human annotated or taxonomy‐based semantic similarity measures. + More information on the evaluation of word embeddings through gold benchmark similarity data + can be found at https://link.springer.com/article/10.1007/s12559-021-09987-7. Notes ----- More datasets can be found at - * http://technion.ac.il/~ira.leviant/MultilingualVSMdata.html - * https://www.cl.cam.ac.uk/~fh295/simlex.html. + http://technion.ac.il/~ira.leviant/MultilingualVSMdata.html + https://www.cl.cam.ac.uk/~fh295/simlex.html. Parameters ---------- pairs : str Path to file, where lines are 3-tuples, each consisting of a word pair and a similarity value. - See `test/test_data/wordsim353.tsv` as example. + See `test/test_data/wordsim353.tsv` as example of human similarity judgments, + and test/test_data/HSS4570.tsv as an example of taxonomy‐based semantic similarity. delimiter : str, optional Separator in `pairs` file. restrict_vocab : int, optional @@ -1459,6 +1462,23 @@ def evaluate_word_pairs( similarities produced by the model itself, with 2-tailed p-value. oov_ratio : float The ratio of pairs with unknown words. + + What you should use and why + --------------------------- + human similarity judgments: + why : they are the most used benchmarks in word embedding evaluation. + why not : + (i) they suffer from word sense ambiguity faced by the human testers; + (ii) the small size of these datasets; + (iii) in some cases they mistake semantic similarity of words with relatedness. + taxonomy‐based semantic similarity measures: + why : they are based on the similarity between elements of a taxonomy, which: + (i) is not subject to sense ambiguity of words; + (ii) can be computed directly by the user + with their desired pairs of words and their taxonomy of choice. + Moreover: + (iii) the benchmark HSS4570 has more pairs than the human similarity judgments benchmarks. + why not : they are less used in the community. """ ok_keys = self.index_to_key[:restrict_vocab] diff --git a/gensim/test/test_data/HSS4570.tsv b/gensim/test/test_data/HSS4570.tsv new file mode 100644 index 0000000000..a727e28d05 --- /dev/null +++ b/gensim/test/test_data/HSS4570.tsv @@ -0,0 +1,4571 @@ +word1 word2 hss +sun sunlight 4.679714426367896 +automobile car 3.2401645050114083 +river water 3.0783073127588847 +stair staircase 0.9040831971175332 +morning sunrise 4.920433811744794 +rain storm 2.628506167744675 +cat kitten 1.048035543752861 +dance dancer 0.2462082647358751 +camera photography 0.11436189327583708 +cat feline 3.192067230328635 +beach sand 0.31375469999779526 +bakery bread 0.15615056821070775 +flower garden 0.3469555161510618 +grass lawn 0.4019343668180509 +copper metal 2.8072656935923894 +photo photography 0.11436189327583708 +cemetery graveyard 4.682632368423683 +gravestone graveyard 0.46537220931671974 +sun sunshine 4.644968698969116 +black dark 3.804804679529079 +cathedral church 4.137074397047063 +station subway 0.47623484854434556 +child kid 3.425449623752286 +aquarium fish 0.4437237022078774 +light lighting 4.82649882557156 +fungus mushroom 2.4899664286640726 +frost snow 3.0712290438643746 +ocean sea 4.652813758592505 +candy chocolate 1.6656186063776608 +car vehicle 1.876578639294355 +concert music 0.9118481389640707 +photo picture 3.068173090330495 +grape wine 0.737216815900741 +bath bathroom 4.76669728664891 +bud flower 3.5560742427670013 +cat kitty 3.3078070863974833 +ocean water 3.047245711622087 +aircraft airplane 3.1448132733504086 +butterfly caterpillar 1.093475356588775 +hair wig 0.42072219694849344 +blossom bud 3.5623215948426554 +highway road 3.2179498460771416 +bunny rabbit 3.938882359775963 +bread sandwich 1.7616490049196114 +flower petal 2.127188249451867 +airplane flight 0.42767300154147336 +ice snow 3.295964279303601 +shade tree 0.6110164275706411 +bicycle bike 4.120639834488514 +truck vehicle 2.074762162189207 +shore water 0.4373352678334678 +dog puppy 2.450549314544263 +bride wedding 0.5313351855098809 +bird hummingbird 1.8547230191346804 +sea water 3.0189801640560305 +cow milk 0.24606425104057852 +bird feather 0.6349378431731671 +chapel church 3.901476058011712 +branch twig 3.9730969986383404 +clothes dress 4.02618631608143 +automobile vehicle 2.074762162189207 +splash swimming 1.1653325828603074 +bed furniture 2.566714327761819 +aircraft flight 0.42767300154147336 +reptile snake 2.3909519824671603 +motorcycle scooter 2.5066769002328915 +coffee tea 2.0678247103003398 +feather goose 0.7473121246303497 +pool swimming 0.9953975518373623 +eye face 1.2596686649460083 +railway train 1.0023827225616657 +harbour port 3.9738441992827718 +fruit strawberry 2.323865867569467 +flight plane 0.38234872773766854 +smoke smoking 4.743712534470147 +ivy plant 1.1541876744416755 +river stream 3.939561071196265 +lake water 2.7632321024806563 +kitten kitty 4.969400237687815 +snow snowman 0.39191695614796057 +dog terrier 2.6035286823457384 +daffodil flower 1.2406851841857522 +pond water 3.0783073127588847 +flood water 0.3443450135882655 +eagle feather 0.49175551168854015 +grape vine 2.5035838131654065 +bird hawk 2.0968855157487107 +clothes outfit 2.1670936347237357 +hand palm 3.0619962846103888 +grave graveyard 1.8315926780636176 +berry strawberry 3.6221018225151584 +forest oak 0.3552085748373884 +crochet knit 3.1874014376661393 +bird eagle 1.5616971626354852 +canine puppy 2.585431439576761 +bar cocktail 0.2485553233540204 +bar pub 1.5673543816403213 +sunlight sunshine 4.653182854492554 +apple fruit 2.3484290488192863 +sun sunrise 1.9628919148489268 +gymnastics sport 2.588010158846218 +beach sea 0.19105746868229392 +game hockey 2.4944404388810604 +bed pillow 0.776613162390406 +daffodil tulip 2.728389858984358 +flower plant 0.9490143595356435 +fire smoke 1.6294383604497713 +canine dog 2.4495952737195723 +bracelet jewelry 3.3707143839045326 +feline kitty 3.187442046474833 +architecture building 2.286567465263457 +shop shopping 0.8294895595669776 +lizard reptile 2.4618136623529208 +music piano 0.25564207727214655 +strawberry sweet 0.7791953176245604 +autumn spring 3.981225522920809 +bacon meat 2.603062879629324 +raspberry strawberry 3.6363715092511866 +chipmunk squirrel 3.6021756490572248 +coast harbor 0.34433060966051665 +dress skirt 2.1047507987562435 +lily tulip 2.8867523510796076 +grave gravestone 0.2732573723557841 +dandelion plant 1.1541876744416755 +light sunlight 3.3684365418630557 +hill mountain 3.2980238109369826 +burger food 1.5924755985038865 +sea shore 0.19105746868229392 +feather peacock 0.3685019557744241 +child mother 2.443154275061427 +night sunset 3.487795218557974 +orange peel 1.1208724688014773 +subway train 1.0023827225616657 +camera lens 2.802050358910253 +daisy petal 0.49026008482517114 +aircraft wing 0.7912384510877359 +bloom flower 4.395602742865975 +clothes jacket 2.0666613991132445 +dinner restaurant 0.15615056821070775 +swim swimming 3.75321344270939 +cemetery gravestone 0.46537220931671974 +cigarette smoke 3.8319061730913146 +shirt skirt 2.435132318442325 +cherry fruit 2.293318360854987 +beef meat 2.599979173920243 +blossom daffodil 0.3685019557744241 +bloom blossom 4.3987364195201675 +maple oak 2.7634042249713797 +colour pink 2.611159938000624 +dog poodle 2.6035286823457384 +lantern light 3.1319931340393383 +coast sea 0.19397757367613666 +dog pet 0.8110815811248144 +hair haircut 3.1307625184329053 +day sunset 0.28777533673243355 +bikini swimsuit 4.381017349985054 +rail railway 3.96586130566329 +art museum 0.63138340438345 +painting portrait 1.9930538415136738 +poodle puppy 2.6816908541087376 +port ship 0.9497910142883091 +bloom tulip 0.24615561032735345 +cold winter 2.093169281981116 +bakery cake 0.6847273312540508 +building roof 0.6047424665083418 +iron steel 1.6936514889214171 +bird stork 1.8547230191346804 +lily plant 1.1541876744416755 +bathroom kitchen 2.689196137926071 +jazz music 2.2944924433617353 +fabric wool 2.508523826734009 +aquarium tank 3.5619292538435663 +fire flame 4.277567723182337 +bloom rose 0.44573993590953664 +leaf nature 1.525495892391914 +town village 2.7423899260340914 +apple orange 2.724521578264139 +dawn sunrise 4.925883693158309 +engine gasoline 0.24606425104057852 +oak tree 1.8873530718588702 +guitar piano 3.2902922661282905 +chocolate dessert 1.6656186063776608 +cat paw 0.22736167465896276 +bird goose 3.5567278588070406 +blue sky 4.499177149852155 +pool swim 0.9953975518373623 +bracelet necklace 3.3707143839045326 +fruit salad 0.19105746868229392 +egg nest 0.3190355918457582 +bird crow 1.3574965286062541 +bird flamingo 1.8547230191346804 +day sunshine 0.44504884508247716 +hockey sport 2.588010158846218 +fruit raspberry 2.323865867569467 +lunch sandwich 2.227026255841816 +foot toe 3.2273715120123043 +baby mother 2.750972929655963 +amphibian frog 2.967432687304674 +burn fire 0.7882318137122096 +oak wood 2.7989919167285775 +photographer photography 0.11436189327583708 +man woman 1.755685287905466 +hair redhead 0.34653345570517513 +harbor port 3.9738441992827718 +pug puppy 2.6816908541087376 +sunrise sunset 3.4635823586859456 +leather shoe 0.24606425104057852 +beach shore 2.7174715784094228 +color red 2.527041609488954 +paint painting 0.5521194314349311 +storm wind 2.36875111704961 +color violet 2.6448727527921494 +rain wet 0.8520718797066755 +bed bedroom 1.4187095083872532 +guitar musician 0.49026008482517114 +petal rose 0.3316066782585482 +rail subway 3.96586130566329 +holiday vacation 4.185709801265014 +cigarette smoking 0.24606425104057852 +airplane plane 3.444658526940555 +daffodil plant 1.1541876744416755 +diner kitchen 1.6534108826714367 +coin silver 0.3291721277072254 +cake chocolate 1.703524150066683 +evening night 2.12678919425564 +race racing 0.7878956624357681 +flight fly 0.6092102008162835 +face lip 2.946181202442791 +berry raspberry 3.6221018225151584 +lamp light 3.05641013037976 +bird nest 0.5796254832594538 +animal pet 1.0821463549554793 +butterfly insect 2.207916166861341 +sky sunrise 0.11436189327583708 +canine husky 2.6229461336705526 +food meat 1.6977171217930946 +cloud sky 0.11436189327583708 +crow feather 1.5268258398633463 +blossom flower 4.449981019290872 +splash swim 1.1653325828603074 +band musician 0.3872816099194384 +cactus plant 1.1541876744416755 +eagle hawk 3.0388227356914013 +harbour sea 0.19105746868229392 +flower foliage 2.0678500612456734 +red violet 2.9836399278487895 +cafe restaurant 3.621934528070071 +beach coast 2.7293404208673415 +puddle splash 0.30273990913410187 +bird pelican 1.8547230191346804 +clothes sock 2.213086740635154 +amphibian lizard 1.0854187082073545 +daughter son 3.490384716224538 +car motor 0.9391435812465685 +amphibian reptile 1.2789550524055924 +day morning 2.060349916946283 +aircraft fly 0.9581661957151699 +airplane airport 0.9040831971175332 +metro train 1.035488838147744 +band music 0.2435522143199267 +shadow sunlight 0.11436189327583705 +night sleep 2.023847502684542 +salad soup 2.4434552896185986 +porch roof 0.783730427295369 +eye tear 1.400537287369152 +colour rainbow 1.167896969686365 +berry fruit 2.366615892993012 +red yellow 3.00754141350333 +sock stocking 3.7762657661932284 +flamingo hummingbird 2.0431458791550967 +tree twig 0.42074938470748185 +kiss lip 0.5915154545103942 +burger sandwich 3.7277547234563118 +rain weather 2.9262728343127264 +feather hawk 0.3685019557744241 +animal zoo 0.49026008482517114 +duck mallard 3.3319536920095802 +mountain valley 2.7293404208673415 +beach harbour 0.46537220931671974 +musician rock 0.8817421007448623 +band guitar 1.0441825760347765 +car garage 1.7419325699756747 +foot leg 2.7121568474755477 +sky sunlight 0.24606425104057852 +mist rain 2.210572054982121 +mother son 2.4880285586626316 +airplane wing 0.7912384510877359 +colour red 2.527041609488954 +bay beach 0.4154770298359811 +blonde redhead 0.8168519533098415 +petal plant 0.4416208752883981 +kitchen room 2.6703247739731006 +bar restaurant 1.5673543816403213 +bedroom room 2.6703247739731006 +bus taxi 3.2922923059034015 +station train 0.4762348485443455 +pelican stork 2.534956044182584 +black grey 3.6042122000647305 +orange yellow 3.004529003691697 +foliage petal 3.1351049705127894 +lip tongue 4.011254021781524 +canine poodle 2.6229461336705526 +bath wash 3.7099692861959035 +foliage tree 0.42074938470748185 +panorama view 3.939531902642555 +bloom daisy 0.24615561032735345 +escalator stair 0.7903036093293658 +petal tulip 0.49026008482517114 +fishing sea 0.19697529120447704 +beef cattle 3.504936691970458 +noodle rice 0.6517209770351696 +bird parrot 1.6392403111953335 +fruit orange 2.2693266090498545 +mural painting 3.58427661204931 +airport flight 0.42767300154147336 +shopping store 0.7242943465895691 +road sidewalk 2.5431487434007134 +airplane fly 0.9581661957151699 +cat whisker 0.17098764602358324 +family friend 0.7011618997584353 +bloom petal 2.097756859152775 +musician piano 0.3685019557744241 +elephant giraffe 1.9032379899952192 +puppy terrier 2.6816908541087376 +breakfast kitchen 0.24606425104057852 +subway underground 4.928715816139923 +sand shore 0.3228237136378983 +butterfly dragonfly 2.3047933295026013 +cheetah lion 3.6712423236769487 +color yellow 2.679484549857306 +door lock 1.9021300746809309 +van vehicle 2.0394625348480315 +orange red 4.612612334399905 +beetle insect 2.1590445854161233 +kid mom 2.5872272301764685 +daughter mother 2.7793933723197033 +child school 0.16437985540780273 +giraffe zebra 2.5007887804789104 +harbor harbour 4.624578598238946 +lamb sheep 1.0010988977418036 +heart love 1.6634235210477197 +lily rose 1.2542263916390537 +asphalt road 0.6283448772485184 +coast shore 4.034553512385245 +nest twig 1.7379329588788148 +figure skating 0.6097477981688586 +rail train 0.9837967815523154 +door wall 2.5769359946302175 +dawn sun 2.0423238126216563 +feather stork 0.3685019557744241 +morning sunshine 0.19697529120447704 +building construction 4.088934660550907 +cafe coffee 0.3862349893248791 +bloom bud 3.54981526187361 +jacket leather 1.3119864478726324 +map travel 0.25564207727214655 +plant seed 1.74433088015425 +city metro 1.652905417842203 +pebble sand 0.3316066782585482 +cafe lunch 0.24606425104057852 +coast harbour 0.34433060966051665 +dog pug 2.6035286823457384 +sky sun 0.21509987180148582 +mallard swan 2.534956044182584 +cloud rain 2.4639776276028083 +sky sunshine 0.19105746868229392 +frost weather 2.8510174200141756 +cherry raspberry 3.3856665219746276 +downtown street 0.30470436717473076 +bloom dandelion 0.24615561032735345 +dragonfly insect 2.2458749242037723 +bottle wine 0.25237688413044634 +railway station 0.47623484854434545 +cafe diner 3.617796502007415 +cafe pub 2.5555275700588753 +building tall 0.31897798459332355 +burger meat 0.736715808167465 +gold silver 4.218263922053663 +cemetery grave 1.8315926780636176 +pizza restaurant 0.24606425104057852 +canine paw 1.679041210166946 +sea swim 0.19697529120447704 +pub restaurant 2.5555275700588753 +day time 2.8665768861175063 +canine terrier 2.6229461336705526 +bottle glass 3.205786466729819 +seed sunflower 0.5249815394768931 +bird owl 1.8547230191346804 +art sculpture 3.216590727455878 +light shade 3.348455504977777 +apartment staircase 0.9040831971175332 +outfit sock 2.1246037380965004 +carrot potato 3.523076697152325 +lizard snake 2.5065552790547168 +city sidewalk 0.3958042205052336 +guitar rock 0.36460126128478576 +brick building 0.486054124557467 +blue colour 2.5037233873657745 +dawn morning 4.893688837650851 +bay sea 3.019622987196771 +cafe shop 1.7164352156344957 +floor roof 4.022120529718541 +clothes hat 2.213086740635154 +marble stone 2.880775696628475 +duck goose 3.6470924722241262 +collection museum 0.63138340438345 +bakery shop 3.2012613715341987 +blossom petal 2.152890840358791 +rice sushi 1.6830617309661606 +cooking meat 0.6310057475509494 +day night 2.7521015478427207 +kiss love 0.36795640569925353 +stream waterfall 3.0905128214851008 +interior room 1.3573439272818717 +poodle terrier 2.704908763134835 +cold frost 0.5111680778085443 +city town 3.744297103596087 +scenery sunset 0.11436189327583708 +green violet 2.9419118178214267 +harbor ship 0.776613162390406 +summer sunshine 0.19697529120447704 +blue grey 2.347305349483244 +art graphic 2.110778358342817 +lake shore 0.24606425104057852 +architecture design 1.2809081289810524 +goose swan 2.471302203821659 +architecture construction 1.2533259380789588 +hawk nest 0.5774827068229134 +carrot salad 0.8274962416828007 +fruit tomato 0.3316066782585482 +purple violet 4.129828647908478 +clothes jean 4.275836181967992 +bloom daffodil 0.24615561032735345 +brick construction 0.35332755020173046 +diner restaurant 3.617796502007415 +ceiling roof 4.668774385842409 +paint portrait 0.6988477298810952 +ripple wave 3.7363810272300313 +beard face 1.0228995823026055 +apple raspberry 2.567727622816111 +fashion outfit 1.9735294524158333 +downtown skyscraper 0.46537220931671974 +bud daffodil 0.49026008482517114 +harbor shore 0.6622216547819396 +blonde hair 0.2603328488519512 +kitten paw 0.24606425104057852 +bay shore 0.6285034951078486 +shop store 3.249601175305699 +gravestone memorial 3.941667444273896 +canine pug 2.6229461336705526 +crow hawk 1.5079127533909937 +dress outfit 3.043074076713317 +bedroom door 2.4843191981601294 +bus tram 2.5274974696050694 +spring summer 3.938456886077604 +scenery waterfall 0.24606425104057852 +road traffic 0.9602894227482662 +hill valley 2.6576348386084194 +ceiling floor 3.8987866137129448 +splash water 0.35151030896401814 +grass weed 4.886560419494416 +parrot wing 0.5571762999681008 +daisy violet 1.2997917137616337 +copper silver 3.7785076075693356 +baseball hockey 3.353638650147858 +pet poodle 1.0821463549554793 +blossom foliage 2.1163780796040994 +pink purple 2.9926815772175965 +grey shade 2.4118473792944553 +panorama scenery 2.5813955256020003 +beard hair 3.831190639554395 +dandelion petal 0.49026008482517114 +blue violet 2.954953075248957 +daisy flower 2.295361974812311 +noodle soup 0.896680314228867 +pet puppy 0.9878429958264888 +bud petal 2.1641184285457955 +ancient ruin 0.2180839570569488 +eye iris 1.2889698180075198 +puddle water 3.009208232429097 +harbor sea 0.19105746868229392 +painting sculpture 3.6628789034333797 +sand sea 0.2336681350202295 +feline kitten 1.3444748041519101 +bird swan 1.8547230191346804 +baseball game 2.8088453827254005 +colour purple 2.56686096544424 +pool splash 0.6028804914849484 +cattle sheep 2.839444587200526 +landscape scenery 4.467510424766263 +coin gold 0.36407864118688726 +boat shore 1.0664078577946847 +apple cherry 2.7293707730056096 +beef chicken 2.5143993389441546 +dessert fruit 0.19105746868229392 +photographer portrait 0.3685019557744241 +chicken meat 2.569910369781766 +ceiling interior 0.2642789736390143 +bathroom bedroom 2.689196137926071 +hummingbird stork 2.0431458791550967 +motor vehicle 0.922767923576953 +colour grey 2.334930495980676 +blue orange 2.788223033604919 +dawn dusk 3.51737139734083 +building downtown 0.22650458897981557 +face tear 1.072575701646443 +boat harbour 0.776613162390406 +cattle farm 0.46537220931671974 +drip wet 0.30037343387475895 +brown green 3.340985161684737 +bedroom ceiling 0.63138340438345 +dinner evening 0.25564207727214655 +face smile 3.7459995935949184 +bride dress 0.49026008482517114 +stone wall 0.4756631052012045 +mural paint 0.8295150790792865 +foliage plant 0.5689138338781329 +day dusk 0.34769179626233915 +roof wall 0.6526875781499095 +cooking food 0.6310057475509494 +photography portrait 0.22683510085532543 +bud foliage 2.1381094200150197 +lily pond 0.24606425104057852 +harbour shore 0.6622216547819396 +palm tree 1.8276891145640657 +bus subway 0.7199191638830211 +holiday travel 0.36407864118688726 +skyline view 2.6308379221260565 +bedroom cottage 1.8128141604443546 +dinner lunch 3.4629438741043224 +grave memorial 1.0532051033020027 +dessert sweet 3.0727630392401135 +bird insect 0.9184733265972029 +concert rock 0.5787092236163257 +mushroom tomato 2.5548004230214203 +metro railway 3.9829093009537293 +giraffe zoo 0.49026008482517114 +railway subway 3.9781209460218054 +parrot pelican 1.9555063996864184 +autumn summer 3.9431679983520787 +automobile truck 2.9435109877040913 +amphibian mammal 1.2789550524055924 +cemetery memorial 0.2732573723557841 +orange purple 2.9745147541767816 +blue color 2.5037233873657745 +daffodil rose 1.2542263916390537 +berry seed 2.3110589057553965 +hummingbird mallard 2.0431458791550967 +dandelion grass 1.8349816335651346 +brick concrete 2.9852975760585814 +costume dress 3.0756803840275957 +cloud mist 3.636006989356745 +brown grey 2.477782193110676 +bathroom room 2.6703247739731006 +daisy plant 1.1541876744416755 +paint picture 0.6518633231628376 +eye lip 2.1643659219391935 +autumn winter 3.983662364087664 +drip rain 0.2696248919164052 +horizon sky 0.2064404786495325 +black blue 2.3861346228060833 +metro station 0.22250658557040853 +alley street 3.795827955286757 +child family 2.5817454080022277 +mountain scenery 0.34433060966051665 +concrete construction 0.4850708514353341 +mill windmill 3.8972715721277518 +summer winter 3.9431679983520787 +plant twig 0.4416208752883981 +breakfast lunch 3.4651484242097768 +concrete floor 0.739875576806038 +rain sky 2.9179375634323215 +moss plant 0.640286566354246 +flower spring 1.9720202152443762 +bird mallard 1.8547230191346804 +graphic illustration 2.593725572765616 +ceiling porch 0.63138340438345 +river valley 0.24606425104057852 +fog mist 4.274759756569314 +dude guy 3.1089855687679644 +moon sky 0.2206532097096786 +bar sushi 0.2034619768131647 +beauty scenery 0.2844257499332475 +feather mallard 0.3685019557744241 +furniture patio 0.9040831971175332 +light shadow 4.117790375750282 +bay harbour 1.6220423687808003 +wash water 0.9953271659347904 +flight owl 0.16246533405531502 +paw whisker 1.6929793497307077 +costume wig 3.327824283715602 +animal giraffe 1.3444748041519101 +animal cattle 1.3444748041519101 +building skyscraper 2.5303862283747156 +meat potato 1.778864798279134 +bud twig 2.1641184285457955 +knit stitch 3.303873999662269 +bed room 1.1118298835422806 +music rock 1.9976275779856163 +berry cherry 2.55403400567703 +piano play 0.519313762345028 +flower lily 1.2406851841857522 +cherry strawberry 2.564434883373354 +clothes skirt 2.104750798756244 +art painting 3.177142375599124 +bird gull 1.6392403111953335 +spiral staircase 0.6971416150832113 +paw pet 0.15615056821070775 +feather nest 1.6143777451379693 +feather owl 0.3685019557744241 +blossom cherry 2.216764072724471 +goat sheep 2.6728511935386248 +green pink 2.7866207324776333 +foliage garden 0.3958042205052336 +dog husky 2.6035286823457384 +feather hummingbird 0.3685019557744241 +sunshine weather 2.829346996744278 +snow weather 2.9161965466807587 +surfer wave 0.6704221996981081 +breakfast dinner 3.4629438741043224 +shoe toe 1.7243088216208713 +band play 0.34370249937202624 +coffee mug 0.37783791977336495 +brick wall 0.6614360957614099 +fishing sailing 1.2167480706801963 +grey white 3.3081602369589014 +orange strawberry 2.5531035651319933 +color purple 2.56686096544424 +blossom daisy 0.3685019557744241 +hawk owl 3.059187307149375 +exhibition photography 1.2865426229483479 +morning night 3.253170671633896 +band concert 0.2435522143199267 +dress shirt 2.2247504716896906 +river waterfall 3.1028487718068725 +ceramic tile 1.046194153716959 +cloud droplet 0.30037343387475895 +exhibition sculpture 1.182034325003953 +oak twig 0.40122543745929534 +movie television 0.9040831971175332 +butterfly hummingbird 1.265324898187448 +daisy grass 1.1293747056343466 +floor marble 0.6506131206609117 +canyon river 0.24606425104057852 +decoration interior 0.2833173943812619 +flamingo stork 2.883291818970101 +bear mother 0.9008829074445668 +moon sun 3.3674517021721524 +green red 4.593086645469828 +purple white 2.713941957747003 +canine pet 0.9091138292521633 +morning sleep 1.9543083469021443 +jacket sock 2.035547206541587 +blue red 2.8629902293518237 +green grey 2.3441853146583798 +lily petal 0.49026008482517114 +blue purple 2.9565875019126775 +goose mallard 3.22101266274573 +hotel restaurant 2.5555275700588753 +jean skirt 2.3818883561805015 +chicken soup 0.7299811349895757 +fly wing 0.7077223613359278 +door room 2.4044477826340565 +skyline skyscraper 0.46537220931671974 +cheetah giraffe 1.9305839206042443 +feline pet 1.0821463549554793 +gull mallard 2.4884258686616527 +spring winter 3.981225522920809 +daffodil spring 0.35263774461435915 +building skyline 0.22650458897981557 +salad tomato 0.962635882068194 +bucket water 0.4379128568969119 +ceiling room 2.69073291542232 +puddle rain 0.19105746868229392 +costume outfit 3.3146245752241352 +hill scenery 0.6340996505686969 +bacon chicken 2.4893779785113788 +dawn night 3.2612808576796364 +cocktail restaurant 0.24606425104057852 +daffodil petal 0.49026008482517114 +canyon valley 3.807571105031983 +brick house 0.5026108654384939 +band rock 0.3170828031255527 +book illustration 1.7078387741740069 +colour yellow 2.679484549857306 +cold weather 0.11436189327583708 +blue green 3.098606343410422 +drip water 0.39706819417840966 +food noodle 1.7349706417120183 +goat milk 0.24606425104057852 +pink yellow 3.013804597974171 +floor interior 2.4699364958681396 +black purple 2.70646076531444 +door window 1.2986541322687666 +city skyline 1.8655358203899621 +art work 1.7989343398001048 +pink violet 2.937642226240096 +bath room 2.472609833966186 +dew rain 2.714985372522166 +boy girl 2.800754235411847 +canyon mountain 2.7293404208673415 +white yellow 2.787083422383311 +colour shade 2.249380214448662 +banana cherry 2.588279332963131 +mammal rodent 1.9117803567815386 +explosion fire 1.592606520941655 +glitter gold 2.5998819765063383 +black white 3.711655302738497 +light neon 0.3323115901151653 +machine wash 0.5800513382467287 +coffee dinner 1.578673684728448 +feather flamingo 0.3685019557744241 +downtown sidewalk 0.46537220931671974 +feline paw 0.24606425104057852 +crow gull 1.6246669152897406 +festival music 1.0143209018087582 +dirt road 0.6502801963295676 +gull pelican 3.0846059761836813 +carrot tomato 2.455837593441087 +blossom tree 0.3352931899562428 +restaurant shop 1.7164352156344957 +cherry grape 2.5674438016832553 +jazz piano 0.25564207727214655 +hawk pelican 1.9063011606345166 +baseball play 2.0318528715112625 +bloom plant 0.24863286996049594 +ceiling wall 0.4842496723049026 +beef potato 1.7563319185806736 +breakfast restaurant 0.24606425104057852 +black colour 2.4193815804424768 +hummingbird nest 0.4468487300423832 +feline whisker 0.15615056821070775 +design graphic 2.534919606847226 +music track 1.7941682972521686 +air cold 0.5628195420124622 +chocolate strawberry 1.6478155012066804 +dinner night 0.2556420772721466 +dusk sunrise 3.5180799036960715 +boat sink 1.8578327414523212 +beef cooking 0.945505987508315 +jacket jean 2.3068265158687185 +computer lab 0.46537220931671974 +downtown skyline 1.8771315102652826 +fun game 1.8113832178725326 +ivy tree 1.225258884534405 +nest wasp 0.4468487300423832 +garden pumpkin 0.31375469999779526 +curl haircut 3.1508297334539646 +outfit skirt 1.993941641510245 +bacon beef 2.582263678055188 +skyscraper tower 1.6831943151655089 +splash wash 1.7905085199212016 +daffodil foliage 0.49026008482517114 +garden patio 0.3958042205052336 +metro subway 4.982615607156767 +beach scenery 0.46537220931671974 +floor room 2.511476711461193 +purple yellow 3.004640530746578 +bead necklace 3.223705548599433 +black brown 2.663732954840444 +dessert strawberry 0.896680314228867 +beef lamb 2.4870263199038156 +bread potato 2.8731691901764425 +pug terrier 2.704908763134835 +evening time 2.1016127491941345 +office table 1.140782674246424 +cat lick 0.6580645740353924 +building interior 1.3573439272818717 +crochet stitch 3.1897143110409782 +spring sunshine 0.40706578738682264 +concert jazz 0.36407864118688726 +cooking soup 0.30037343387475895 +shade sun 0.8567363300208755 +tall tower 0.8820360235728308 +pepper salad 1.6285933243282402 +strawberry tomato 2.213456176165515 +fruit peel 0.3632865750276409 +scenery skyline 1.8289110356383103 +green yellow 2.99873597218285 +brown orange 2.913107940886641 +colour orange 2.6370089096050897 +harbour ship 0.776613162390406 +violet yellow 3.016836514149987 +sport swimming 2.588010158846218 +blue pink 2.900439607229559 +blossom orange 2.197316926269758 +rail station 0.5234495403972426 +potato salad 1.7499791262654054 +interior wall 2.433120505755872 +hawk hummingbird 1.9063011606345166 +cliff coast 2.7293404208673415 +feather wing 0.34976697440784793 +brown yellow 3.010778769822326 +raspberry sweet 0.7046372013495222 +art craft 2.099619203340491 +bloom foliage 2.0130771898529907 +chicken rice 0.8121091363073969 +cherry orange 2.7973723292720685 +blossom fruit 2.244277134825577 +animal wild 0.34433060966051665 +line railway 3.214417179619915 +roof tile 0.7837304272953689 +concert piano 0.2556420772721466 +potato rice 2.7621575694970395 +cloud sunshine 2.425460249287887 +marble statue 3.5295628784068485 +band punk 0.2928722035524751 +insect reptile 1.1813455565351643 +building staircase 0.63138340438345 +bed breakfast 0.24606425104057852 +bloom lily 0.24615561032735345 +blonde girl 1.0037576989929244 +jean outfit 2.0743626559091917 +bread cooking 0.2556420772721466 +flower violet 1.1414035696369385 +peel skin 4.114143091892135 +dessert diner 0.24606425104057852 +art exhibition 1.0292210931190207 +jacket shirt 2.3677715214208157 +brown purple 2.9867377284722063 +floor patio 2.3263588535652566 +downtown highway 0.46537220931671974 +purple red 2.9804066354688086 +dragonfly frog 1.0971577017360326 +mammal monkey 1.8148056898879792 +feather gull 0.3685019557744241 +gull stork 2.4884258686616527 +dusk morning 3.5160275075640763 +bloom violet 0.5100100226126475 +mallard stork 2.534956044182584 +band piano 0.9242852091267092 +orange pink 2.89462461073176 +potato soup 1.5924755985038865 +grey violet 2.7058420007411383 +construction demolition 0.9367969050833767 +scenery valley 0.46537220931671974 +beach cliff 2.7381496962735143 +black pink 2.577905744248137 +hat jacket 2.035547206541587 +dragonfly hummingbird 1.3444748041519101 +pink white 2.394350924030867 +blue yellow 2.9953155872399235 +flower pink 2.2373083224847696 +restaurant sushi 0.24606425104057852 +guitar keyboard 1.526689350451846 +diner sushi 0.24606425104057852 +furniture room 0.63138340438345 +desert scenery 2.2657152601560178 +cafe dinner 0.15615056821070775 +bakery cafe 1.8128141604443546 +flamingo pelican 2.534956044182584 +salad sandwich 2.4839752814692604 +building floor 2.0525090024868256 +apartment floor 1.685548936777891 +railway underground 3.94986757071709 +lip smile 0.22250658557040853 +fungus plant 0.640286566354246 +breakfast diner 0.24606425104057852 +feather pelican 0.3685019557744241 +arch roof 0.637635626708032 +game match 3.7114921482644028 +metro rail 3.980651818873286 +decoration wood 0.4456348049993283 +building demolition 0.9554269222897962 +art collage 1.9930538415136738 +ship sink 0.9626929043090007 +grey purple 2.7500535773038637 +garden lawn 3.739935376271131 +orange violet 2.925266694437518 +ivy oak 1.2862532885340876 +dog lick 0.41963908129422334 +fun kid 0.13500927659699347 +lunch restaurant 0.24606425104057852 +metro underground 4.930751361394042 +foliage rose 0.3316066782585482 +evening sleep 2.1163451475922312 +construction interior 0.8216200101671463 +fruit nut 2.1948877224895096 +car park 1.3703381115863376 +ink pencil 1.1839093985569022 +mural work 2.1039141626043723 +berry blossom 2.281909383117773 +decoration lighting 1.3862784625107298 +man muscle 0.7036906415278993 +drip puddle 0.45819204772414773 +porch stair 0.9040831971175332 +brown red 2.9210263041774973 +apartment bedroom 1.8128141604443546 +foliage lily 0.49026008482517114 +rain wind 2.6301860440204172 +handwriting sketch 1.1081186367572453 +blonde haircut 0.31718447702480335 +abandon ruin 0.8868520569026813 +black yellow 2.7927659261136797 +dragonfly pond 0.24606425104057852 +ceiling staircase 0.63138340438345 +morning time 3.173204200686188 +potato sweet 1.6533313530747258 +hotel house 2.5267381902053914 +guy haircut 0.3685019557744241 +mud sand 3.2889501513087622 +staircase wall 0.7795282053722717 +brown white 2.246761498340864 +evening morning 2.1163451475922312 +hummingbird pelican 2.0431458791550967 +bike chopper 2.0912084376776585 +foliage tulip 0.49026008482517114 +bar cafe 1.5673543816403213 +autumn sunshine 0.19697529120447704 +potato tomato 3.494263182159695 +scenery trail 1.6820763345583205 +jacket skirt 2.1906216121912596 +construction skyscraper 1.6337286941993634 +chicken lamb 2.3517866659050166 +grey orange 2.554735802780552 +bikini lake 0.24606425104057852 +carrot soup 0.7299811349895757 +bar diner 1.2898339885932208 +violet white 2.6148545218694794 +apple dessert 0.962635882068194 +bear son 0.8795152366898414 +insect lizard 1.0852831342992346 +foliage twig 2.1381094200150197 +morning sunset 3.490203834432832 +escalator subway 2.5159425096968664 +bacon soup 0.8029150374267293 +berry sweet 0.7902211269974745 +grey pink 3.276076268312012 +rain sunshine 2.784391797713163 +game play 3.3052832160149777 +cocktail dinner 2.0807372751047635 +building concrete 0.63138340438345 +street town 2.338174281515679 +friend love 0.7716102739387505 +berry twig 2.151012098865569 +ball drop 3.2916924449866287 +black violet 2.7018523916995463 +hawk wild 0.34433060966051665 +floor staircase 0.739875576806038 +lawn patio 0.46537220931671974 +guy sport 0.7461737985934773 +blossom purple 0.2556420772721466 +cold rain 1.5547324671677167 +reptile wild 0.34433060966051665 +glitter sunshine 0.6735103296228031 +room staircase 0.63138340438345 +mammal wild 0.34433060966051665 +interior paint 1.7447238159670093 +forest frog 0.34433060966051665 +ceiling window 0.5684891264796686 +coast sailing 2.3273450170538332 +fungus moss 0.7341215995860257 +interior staircase 0.3958042205052336 +bride photographer 1.0815506406396596 +dirt racing 0.8123783804785742 +boy school 0.16437985540780273 +brown violet 2.9740189561884978 +chapel graveyard 0.34433060966051665 +dew frost 2.6178375931199174 +dark grey 0.4425740323122258 +desert mountain 0.4194686103434062 +collage illustration 2.529723363114606 +cold wet 1.411702549988513 +day evening 3.3085183108100376 +jean shirt 2.5249652552196924 +blue white 2.1596328657883443 +giraffe lion 1.7151197662122923 +dandelion foliage 0.49026008482517114 +bird reptile 1.167763478019035 +bathroom floor 2.59440925820982 +love smile 0.30037343387475895 +small village 0.19397757367613666 +hat jean 2.156186551177202 +bud fruit 2.2147720361815764 +fall tear 1.019884976180542 +food fruit 0.38887003781755114 +red white 4.6484814823710865 +collage exhibition 2.39346820940229 +orange raspberry 2.5195302453773913 +hat outfit 2.1246037380965004 +hockey play 2.087490094959631 +bag pillow 0.7604009382746031 +bread salad 1.7616490049196114 +bathroom ceiling 0.63138340438345 +bacon burger 0.9761591004655872 +ceramic floor 0.739875576806038 +pepper potato 3.103829910884317 +pink red 2.9491885868136967 +interior roof 0.360333584418194 +vine wine 0.15615056821070775 +skyline tower 0.3958042205052336 +pet terrier 1.0821463549554793 +downtown subway 0.34433060966051665 +jump leg 1.8931512628914888 +dessert salad 2.227026255841816 +shirt sock 2.213086740635154 +exhibition painting 1.3035202533180839 +boardwalk trail 2.5221730646417124 +apple blossom 2.2681412145315907 +hawk mallard 1.9063011606345166 +hand stand 1.369119708735436 +flower yellow 0.19697529120447704 +floor porch 1.685548936777891 +drip wash 0.7240167759836995 +foliage ivy 0.49026008482517114 +cliff waterfall 0.24606425104057852 +foliage fruit 2.051845922911808 +orange white 4.6350996819676515 +station underground 0.22250658557040853 +dude friend 1.0815506406396596 +rain sun 1.9331600727060798 +belly dance 0.184192129137201 +reptile rodent 1.4852139609136645 +burger salad 2.4756118285466373 +fruit sweet 0.3667730213947438 +flamingo mallard 2.534956044182584 +garage kitchen 1.8128141604443546 +roof stair 0.783730427295369 +club hockey 0.23255422547193938 +house staircase 0.636405942157671 +feel kiss 0.42866059824812963 +lake valley 0.24606425104057852 +door patio 2.224962161980937 +apartment kitchen 1.8128141604443546 +grey yellow 2.806075813032191 +chicken salad 0.8274962416828007 +punk rock 4.2598545971918815 +bloom twig 2.097756859152775 +blonde wig 0.31718447702480335 +cold water 0.31189664977100523 +blur lens 0.5128515609787869 +door porch 1.7656190464078616 +foliage orchid 0.49026008482517114 +female makeup 0.2951902345390629 +cloud sunlight 2.2208226872453065 +beach pebble 0.46537220931671974 +bed floor 3.191675155014674 +cherry dessert 0.9732889577646368 +dark shade 3.725621792790761 +railroad underground 3.94986757071709 +cafe donut 0.24606425104057852 +musician punk 0.9499923804387197 +memorial people 0.30037343387475895 +stop time 1.0271706793983988 +glitter star 0.5146835145267933 +fun idea 0.8087275351244396 +band uniform 0.8017823646674355 +insect plant 0.7741354446728114 +bedroom kitchen 2.689196137926071 +harbour scenery 1.7182203686699966 +collage painting 1.9930538415136738 +mist sky 0.24606425104057852 +dawn sunshine 0.19697529120447704 +costume shirt 2.2247504716896906 +mud water 1.338793364155377 +blossom violet 0.31718447702480335 +shade sunlight 0.09021795947527439 +bacon salad 0.8814684690625636 +pod round 0.5599122887137811 +flower fruit 2.199957999385114 +door stair 0.8726736089760941 +foot tall 0.20896397157661004 +cooking fruit 0.810464737808371 +burger soup 2.4224771543206067 +match play 1.51209070363599 +cattle goat 2.830375046888176 +camera theatre 0.7046422068760644 +flower wild 0.3173753737729448 +lick lip 0.67180914508944 +lunch tea 3.3175645283934836 +berry dessert 0.8814684690625636 +downtown shopping 0.34433060966051665 +kitchen wash 0.7208708722071848 +petal twig 2.1641184285457955 +amphibian bird 1.0024886521450669 +meat soup 0.7990473748641503 +camel desert 0.46537220931671974 +foliage shade 0.486054124557467 +restaurant room 1.7186187063819502 +couple family 3.467681323552671 +bird mammal 1.167763478019035 +arch porch 1.6444503088726237 +kitty lick 0.22683510085532543 +blossom ivy 0.3685019557744241 +grey red 2.5831304107172683 +bay cliff 0.4154770298359811 +door staircase 2.429217764072655 +chess toy 0.44538573964590095 +gull hummingbird 1.9555063996864184 +beauty peacock 0.5466353939056429 +boardwalk park 0.7077773283757843 +city ruin 0.24256650812906663 +bay swim 0.5678248420127694 +daisy foliage 0.49026008482517114 +apartment bathroom 1.8128141604443546 +flower purple 0.19697529120447704 +hill path 0.5350468870633054 +match stadium 0.7059265591305145 +monument ruin 1.5522516434206837 +dark white 0.3384412962294694 +ancient city 0.3958042205052336 +lick puppy 0.11436189327583708 +metal punk 0.9148791343165787 +nut sunflower 0.5573586639319277 +glass vinyl 1.50076870262275 +foliage moss 0.49026008482517114 +coast scenery 0.34433060966051665 +bacon bread 1.801806826435801 +brick roof 0.6605674198104375 +wet winter 0.36407864118688726 +dark silhouette 1.6686307607501463 +bacon dessert 0.8814684690625636 +floor stair 0.739875576806038 +day lunch 0.03980124181119259 +line lunch 0.12336596534724625 +shirt white 2.4243547173705156 +lick paw 0.11436189327583708 +brown pink 2.9170576196138174 +city downtown 2.8779924333777664 +bird dragonfly 1.0037874692366022 +bacon tomato 1.7070301361601825 +dandelion seed 0.5249815394768931 +purple shade 2.6587165866525053 +bacon pepper 1.505327312414347 +dark purple 1.1236549232197484 +door floor 2.7106168383571703 +sidewalk street 2.538598372434998 +bacon sandwich 0.8814684690625636 +petal pink 0.42074938470748185 +colour dark 0.9828367419778925 +brick staircase 0.7784929891481046 +valley waterfall 0.24606425104057852 +rice soup 1.465993669487622 +patio pool 0.4631085887690034 +river scenery 0.24606425104057852 +beard blonde 0.6473699441534686 +nest stork 0.4468487300423832 +carrot pepper 2.3392724808998464 +collage paint 0.6988477298810951 +jump swimming 1.0184121882237234 +chapel gravestone 1.7802889841498553 +feel smile 0.31897798459332355 +flag stripe 2.7015497239887276 +harbour town 1.7624813684522365 +guitar punk 0.3631091806569695 +christmas valentine 0.2556420772721466 +bloom pink 0.43771774512613504 +bear daughter 0.9734095820338418 +insect rodent 1.1813455565351643 +bedroom floor 2.59440925820982 +stair wall 0.7795282053722717 +chapel ruin 2.3755364858441905 +beef tomato 1.7563319185806736 +doodle scratch 0.14973611338783155 +lake scenery 0.24606425104057852 +roof staircase 0.783730427295369 +chain store 0.8436420916680222 +coast hill 2.6168991434664166 +mushroom pepper 2.381240957032634 +porch window 1.4140813578352547 +sock white 1.8688977601961307 +arch bridge 1.610647621686648 +dessert raspberry 0.896680314228867 +brick ceiling 0.486054124557467 +scenery sunshine 0.19105746868229392 +city square 2.324312553796834 +stand walk 0.78493217722974 +evening fun 0.36407864118688726 +burger mac 0.40122543745929534 +paint sculpture 0.6988477298810951 +frost rain 2.7846284650067843 +color shade 2.2493802144486614 +bacon potato 1.7070301361601825 +patio stair 0.9040831971175332 +button sticker 1.3165426530328652 +pepper soup 1.4223317701777116 +smile tear 0.36407864118688726 +train underground 1.035488838147744 +blonde curl 0.9008765919308405 +flamingo mammal 1.4852139609136645 +porch staircase 0.9040831971175332 +ford river 3.0704171290061457 +room stair 0.63138340438345 +face glitter 0.6492269442351628 +nest reptile 0.4468487300423832 +floor kitchen 2.59440925820982 +cottage garden 0.3958042205052336 +day weather 0.03980124181119259 +amphibian insect 0.9347241915153444 +brown feather 0.36726011664741764 +bike rally 0.07449142661257128 +apartment patio 1.8128141604443546 +kitchen patio 2.4445862652948875 +line subway 3.091971489096424 +breakfast room 0.09021795947527439 +gull reptile 1.3340662907253484 +bath bedroom 2.6068412150320697 +cottage patio 1.8128141604443546 +band metal 0.30953246853032274 +berry foliage 2.112896318910619 +mushroom salad 0.764108729179736 +bath kitchen 2.6068412150320697 +ruin stone 0.31855644982467 +building sidewalk 0.63138340438345 +fall stop 2.526887187662796 +cloud ripple 0.30037343387475895 +cliff scenery 0.46537220931671974 +salad strawberry 0.896680314228867 +graveyard ruin 0.20406817520416723 +pepper tomato 3.40345702697673 +line metro 3.31603800439062 +bird wild 0.29822536259363197 +hill road 0.6063706026166107 +cliff harbour 0.46537220931671974 +baseball club 2.8673540632230314 +collar skirt 1.6851946812173941 +match round 0.9882439934669849 +kitchen stair 0.9040831971175332 +church graveyard 0.22650458897981557 +lighthouse wall 1.7042060224701794 +dawn spring 1.9660265346866175 +flower weather 0.19105746868229392 +evening walk 0.34003936662386636 +cliff sea 0.19105746868229392 +cold mist 0.11436189327583708 +station theatre 1.6693390616135977 +friend lady 1.0815506406396596 +mountain sea 3.6816669151694636 +escalator metro 0.2556420772721466 +friend guy 0.892739740042242 +theatre tv 0.7046422068760644 +ceiling kitchen 0.63138340438345 +nature snowman 0.24617604797132497 +coin ticket 0.36407864118688726 +plane sailing 0.22250658557040853 +sea sink 2.3097032202720906 +bench boardwalk 0.7556613313405544 +bath bed 1.9509152953581312 +restaurant shopping 0.7903036093293658 +canine run 0.9016371638638782 +bus rail 0.9987000423409579 +bathroom bed 1.4187095083872532 +goose wolf 1.0101324352699033 +black paint 1.4250429647982032 +beef salad 0.896680314228867 +construction downtown 0.14967761912267458 +parking underground 0.36407864118688726 +park skate 0.7424940606171573 +apartment pool 0.4631085887690034 +flood line 0.9686328783822457 +marble wall 0.7368134394663246 +palace ruin 2.396738808597675 +panda pig 1.612277078635501 +frost shade 0.13667242158651827 +cherry sweet 1.2643297105373668 +carrot fruit 1.9747765679799176 +brick skyscraper 0.7784929891481046 +collage sculpture 2.076617476799964 +fruit potato 0.3316066782585482 +grey stripe 0.4151568326725039 +patio room 2.4164163618261325 +blue fabric 1.4352623042881494 +guitar track 0.8327175790168378 +kitchen porch 1.8128141604443546 +sweet wine 1.7143531344019356 +hummingbird insect 1.1813455565351643 +hill horizon 0.41656132112803906 +beef pepper 1.5663210840296045 +hand leave 2.9112105884723296 +beef deer 2.761489385986171 +frog whale 1.113394872715737 +festival gate 0.16020920339225947 +interior object 0.8786614571890163 +smoke sun 1.614817887803527 +crochet jewelry 0.9040831971175332 +architecture skyline 0.22650458897981557 +cold puddle 0.11436189327583705 +blur eye 1.2809744679898456 +baseball shirt 0.7903036093293658 +amphibian pelican 1.2789550524055924 +shade violet 2.7059033077498276 +green shade 2.4653543057197407 +blue stripe 0.38198946436306336 +patio staircase 0.9040831971175332 +puddle street 0.5010743340657433 +eye smile 0.22250658557040853 +canine lick 0.11436189327583708 +outfit punk 0.3102037388429058 +dragonfly reptile 1.3444748041519101 +mist sunshine 2.249620526580929 +castle ruin 2.210899957901599 +angel sculpture 1.3584595633829093 +bud ivy 0.49026008482517114 +chicken mammal 1.2324195947750687 +carrot sunflower 1.2006897318742158 +interior stair 0.3958042205052336 +craft game 2.0806078550433122 +valley village 0.3958042205052336 +brown gull 0.8663974856181229 +decoration tulip 0.2951902345390629 +bud pink 0.42074938470748185 +dessert orange 0.9284882764319038 +mammal reptile 1.4852139609136645 +floor skyscraper 1.685548936777891 +coast valley 2.7293404208673415 +ceiling stair 0.63138340438345 +red stripe 0.26646164187658616 +hang stand 0.7657395685420869 +meat pepper 1.5941166187420297 +insect mammal 1.1813455565351643 +track vinyl 0.1662770435033927 +show sketch 0.9942579778905323 +harbour sink 0.6508979068049507 +blue shade 2.4090314997036524 +garden house 1.2027929214738675 +crane wild 0.34433060966051665 +feel tear 0.6799129097844957 +shore valley 2.7174715784094228 +amphibian wild 0.34433060966051665 +door kitchen 2.4843191981601294 +stripe white 0.42103059198466464 +family male 0.4593793422905479 +hummingbird mammal 1.4852139609136645 +amphibian dragonfly 1.1098693598285991 +line street 2.7540465797438416 +black skirt 1.7749027976604324 +porch wall 1.7042060224701794 +drop hang 1.2034035912718442 +pepper strawberry 2.0535154275833 +ruin skyline 0.20406817520416723 +nude painting 3.5043089988010308 +diner patio 1.6534108826714367 +bridge ford 0.6643828167624464 +dress match 0.7059265591305147 +fungus rust 2.4789801066272674 +stripe yellow 0.2838195183119489 +chapel tower 1.5865905041362467 +feather wild 0.3552085748373884 +harbor sink 0.6508979068049507 +barn owl 0.3685019557744241 +frost grass 3.0420733155177975 +blue shirt 2.1246994919562594 +post view 0.9196801824044445 +hawk mammal 1.2542687006827382 +garden kitchen 0.3958042205052336 +hawk reptile 1.2542687006827382 +snow sunshine 2.7826284082897943 +bloom purple 0.9034003914253503 +family female 0.5570940407962414 +orange salad 0.9284882764319038 +architecture shade 1.266512999236111 +bedroom stair 0.9040831971175332 +hill town 0.6667607251495057 +bread dessert 1.7616490049196114 +cathedral step 0.5486399177578685 +bedroom staircase 0.9040831971175332 +shore town 0.42093511054989974 +bench game 0.4818052012999135 +mist sunlight 2.259386494486875 +fountain marble 0.6929360963407312 +makeup reflection 1.2252936108631567 +sketch texture 0.38390419989049085 +deer elephant 1.9032379899952192 +bed ceiling 2.55199332593929 +berry ivy 0.6099151019039717 +ruin village 0.24256650812906663 +cafe street 0.7435174770769201 +palm twig 0.28257550054242997 +frost spring 0.21948728684555435 +daisy pink 2.287022281152078 +arch wall 1.4171684597324075 +porch room 1.7186187063819502 +cottage scenery 0.776613162390406 +fruit meat 1.9633729702539169 +bath floor 2.285284305155076 +old town 0.16020920339225947 +skirt white 2.120491882346302 +fire sand 0.7766665150995539 +blue dark 0.43982064292900297 +ceiling marble 0.9336740604217553 +basket dinner 0.21096423802060738 +card party 0.3956723789811805 +cold drip 0.5501280411939116 +lamb snow 3.0772900545019284 +cathedral ruin 2.50926821783036 +hill river 0.24606425104057852 +orange shade 2.557732721582375 +coffee lunch 1.6935698781299013 +key palace 0.5985473928375556 +shop show 1.1671020020192986 +burger dessert 2.2089656995609372 +craft note 0.3724759977130634 +dessert sandwich 2.227026255841816 +beer patio 0.24606425104057852 +brick porch 0.7784929891481046 +ceiling door 0.8254867369554408 +deer insect 1.1813455565351643 +rock track 1.658943266372864 +exhibition work 1.0997764822838874 +city lamp 0.3958042205052336 +shade white 2.262266480449873 +beauty orchid 0.5466353939056429 +hummingbird rodent 1.4852139609136645 +arch concrete 0.780990590055362 +airport asphalt 0.7724677313662398 +air dew 2.661734169361415 +frost plant 0.5693493675806357 +forest hummingbird 0.34433060966051665 +kiss smile 0.2556420772721466 +autumn shade 1.3214950036967752 +guy kid 0.801742598165833 +fall love 0.8129807829524923 +oak rose 1.5771943504086359 +city firework 0.29377960718498 +lamb mother 0.947459168882717 +cone diamond 1.7105081266182998 +concrete school 0.4850708514353341 +scenery sketch 2.5451253738790847 +face guy 0.6148936616285359 +scenery shore 0.6622216547819396 +daisy gravestone 0.49026008482517114 +field skyscraper 0.4365001417825336 +leather rope 0.962635882068194 +sink sunset 1.3614079573903375 +amphibian brown 0.6532841031543091 +miniature painting 3.5618886648008043 +dessert wine 1.7616490049196114 +dark orange 0.5020495586460092 +dessert lunch 2.227026255841816 +boy hand 0.826976139852937 +dessert soup 2.1477812522808386 +blue skirt 1.8519566981500324 +dark pink 0.6209149439066873 +interior patio 0.3958042205052336 +camera painting 0.63138340438345 +pink skirt 0.6636472057460969 +ivy wall 0.4577900875212155 +action truck 0.7050012350749015 +hill shore 2.5130043292134974 +hummingbird reptile 1.4852139609136645 +light sleep 1.0475005925452114 +bead gold 0.6092611228818934 +clothes haircut 0.3685019557744241 +evening sunshine 0.19697529120447704 +foliage violet 0.3685019557744241 +cathedral interior 0.3958042205052336 +post quote 2.137396712575967 +mammal pelican 1.4852139609136645 +escalator underground 0.2556420772721466 +band outfit 1.380720984350709 +church interior 1.6583677237778618 +market sushi 0.13202848045181464 +arch brick 0.6444829181293407 +feel sleep 1.2603877021753709 +insect twig 0.49026008482517114 +cherry vine 1.2006897318742158 +dessert noodle 0.962635882068194 +black pencil 0.7686987242284098 +band track 3.714662181979761 +skate vehicle 0.9132574283217635 +dessert rice 1.6830617309661606 +movie shopping 0.9692152205499156 +shade twig 0.2462082647358751 +black stripe 0.49528900053314096 +church porch 1.7186187063819502 +morning smile 1.041001341509508 +bath patio 2.328966563988897 +person stair 0.42074938470748185 +pumpkin valley 0.3822391376186275 +dark pod 0.23914235661306954 +orchid patio 0.49026008482517114 +shade yellow 2.755533938853214 +key stone 3.2400680140834104 +bathroom staircase 0.9040831971175332 +dome interior 0.31555559652833404 +breakfast hotel 0.24606425104057852 +bike patio 0.9040831971175332 +glitter smile 0.36407864118688726 +downtown shore 0.46537220931671974 +fruit sunflower 0.42074938470748185 +feline reptile 1.4852139609136645 +run train 2.252238034637262 +shopping street 0.5828881522561953 +cat garden 0.3594066010884117 +steel wing 0.8168925416139026 +guy walk 0.4021711594506837 +horse work 0.5635282233141158 +chipmunk wolf 1.6302583490143479 +red shade 2.6061951837694335 +school traffic 0.9669009781799747 +dance hotel 0.63138340438345 +ceramic colour 0.04891254693397154 +house poster 0.29369078546014904 +sweet vine 0.45428435888139457 +barn food 0.19397757367613666 +field squirrel 0.32591688820665693 +brown hawk 0.8179870422534777 +city small 0.19397757367613666 +dark violet 0.7236732009050879 +brick interior 0.3958042205052336 +couple female 0.07449142661257128 +cliff sand 0.31375469999779526 +key motor 0.9994996744378792 +square town 2.231246306317324 +jean wash 2.330404320526538 +foot piano 0.8277177487647595 +model toe 0.31722396718010465 +crystal spiral 0.46743232823141506 +cliff shore 2.7174715784094228 +lake whale 0.24606425104057852 +shore waterfall 0.24606425104057852 +foliage pink 0.42074938470748185 +hawk insect 1.008001745908333 +curl whisker 0.19397757367613666 +dessert pepper 1.6285933243282402 +dinner room 2.4872616985645615 +art drive 0.8419485540606673 +drop time 1.8553980554596512 +skin sunglasses 0.8791415846760032 +drug musician 1.013734174659548 +fall stand 2.4870546734911456 +cliff fence 0.46537220931671974 +gasoline town 0.28282943130319305 +decoration twig 0.2951902345390629 +flower shade 1.0243406704435136 +skin skirt 1.5028754322415332 +feel idea 2.05575610399221 +ruin town 0.23682326768921885 +bedroom breakfast 0.24606425104057852 +fountain hill 2.336401086878914 +couple male 0.07449142661257128 +bathroom patio 2.4445862652948875 +guitar vinyl 0.24606425104057852 +dead hang 0.36407864118688726 +heart wing 1.621404371653175 +salad sunflower 0.24606425104057852 +bedroom patio 2.4445862652948875 +badge metro 0.36407864118688726 +fun time 0.6752991594064512 +dark red 0.5480827960035772 +concrete interior 0.3958042205052336 +cone windmill 0.6605674198104375 +object scooter 0.19341276425937481 +cone hill 0.5827572373975046 +dancer palace 0.4416208752883981 +brown hummingbird 0.640286566354246 +escalator railway 0.631490038348303 +hold nest 0.5231100596399211 +baseball show 2.094066040514266 +patio spring 0.5709746320389084 +mammal nest 0.4468487300423832 +fun night 0.5428939944697764 +game rocket 0.542841776373439 +downtown ruin 0.20406817520416723 +makeup people 0.30037343387475895 +interior porch 0.3958042205052336 +bed patio 1.4187095083872532 +dark yellow 0.8914627557656214 +grave number 2.2737998548487597 +mill sunflower 0.6160254955391546 +farm wind 0.2371269353174087 +cold wash 0.3792017975885192 +idea people 0.36407864118688726 +couple old 0.3291721277072254 +food gull 0.19105746868229392 +gate hotel 1.6054716184984517 +glitter night 0.5925096422773466 +cold sun 1.9476335602980979 +chicken pepper 1.4609175197107833 +salad sweet 2.2063189979214846 +porch stone 0.5188062770655808 +coffee room 0.7363357953754681 +amphibian hummingbird 1.2789550524055924 +flamingo insect 1.1813455565351643 +club shirt 0.8104633532652762 +porch tower 1.6831943151655089 +skateboard swimsuit 0.9040831971175332 +desert road 0.4194686103434062 +kiss tear 0.8405163506149547 +feather grey 0.3670909749824125 +club match 1.0744166266857693 +chapel porch 1.7802889841498553 +figure spiral 2.002784967298892 +bird shade 0.5535723797210315 +blonde dark 0.7236732009050879 +chain engine 1.0032796797076429 +bathroom porch 1.8128141604443546 +country work 1.5856675090157446 +leave stop 0.7031888233831223 +desk white 0.7262638535101082 +object piano 0.2753808130705887 +can mill 1.108508739986334 +female race 0.2180839570569488 +frost sunshine 2.690688000437339 +soup sweet 2.0677923211428215 +black seat 1.0776127873511165 +lion pelican 1.1755226391058082 +graffito interior 0.3958042205052336 +cold summer 2.093169281981116 +market orange 0.28947964181799835 +guy kiss 0.15615056821070775 +arm caterpillar 0.8791415846760032 +foliage frost 0.3357939320626727 +gravestone pattern 0.48152208557156295 +shop summer 0.19697529120447704 +petal shade 0.2462082647358751 +gull mammal 1.3340662907253484 +cone palm 0.3417751265105259 +makeup town 0.2862383903027054 +gull insect 1.0852831342992346 +dessert meat 0.896680314228867 +butterfly glitter 0.7206593710682542 +interior skyscraper 0.3958042205052336 +market white 0.42103059198466464 +bed staircase 0.776613162390406 +miniature paint 0.8295150790792865 +bloom glitter 0.5078518549793587 +city mill 0.36795937908922544 +coast downtown 0.34433060966051665 +dew sunshine 2.618561810152703 +star storm 0.4273351122147645 +patio wash 0.7208708722071848 +cold ear 2.2059205182994526 +house windmill 0.636405942157671 +fly toy 0.9720483925710567 +aircraft door 0.8726736089760941 +porch ruin 1.647909371860508 +cross tower 1.2569552362284655 +city old 0.19697529120447704 +cold sunshine 0.7488148817160769 +dragon metal 0.28282943130319305 +light shed 0.5014117333744093 +hotel library 2.398986185288512 +feel friend 0.09021795947527439 +ruin tower 1.3052898915640778 +abandon railroad 0.2556420772721466 +couple makeup 0.2742401434325077 +smile walk 0.3400393666238664 +hotel sand 0.3316066782585482 +crystal dirt 0.737216815900741 +reptile stork 1.4852139609136645 +coast sink 2.650332600068543 +band vinyl 0.9290466417060703 +parrot reptile 1.3340662907253484 +steel town 0.38531517887793837 +architecture table 0.41744284486926064 +bedroom porch 1.8128141604443546 +aquarium seagull 0.49026008482517114 +butterfly transformer 0.3685019557744241 +landscape stadium 0.7827464336694681 +lunch walk 0.05523471587671592 +church cookie 0.2381684752695032 +stripe violet 0.3057845625587566 +origami white 0.06425778429112604 +bag flag 2.4983594995740046 +escalator station 0.47623484854434545 +green lantern 0.3841955396615361 +painting work 2.2640180335529148 +pigeon round 0.3071281804386693 +haircut smile 0.2556420772721466 +coast sketch 0.5697143333153375 +man stand 0.6058640972893271 +demolition interior 0.19697529120447704 +pelican toe 0.39191695614796057 +garage garden 0.3958042205052336 +brown insect 0.8663974856181229 +family old 0.3432773398410184 +brown pelican 0.640286566354246 +fountain parade 0.6147259167072141 +fungus insect 0.7341215995860257 +handle shop 0.3958042205052336 +collection work 2.5394827101988966 +pepper sunflower 1.2862532885340876 +graphic roof 0.783730427295369 +play spiral 0.9423830098160264 +ball square 1.4472290849270237 +red tea 0.6060756715837446 +port sweet 1.4460034616525241 +night stop 0.4728936708089052 +muscle nature 1.0970277120262066 +game scooter 0.7090602688424957 +interior toy 0.39580422050523356 +gate pebble 0.4416208752883981 +blue sock 2.0254295108418203 +bedroom pool 0.4631085887690034 +graveyard house 1.5980364544301764 +foot friend 0.6297371962097695 +bed picture 0.594461351022985 +glass road 0.6606436902525512 +bed kitchen 1.4187095083872532 +bicycle green 0.3841955396615361 +shade whale 0.2462082647358751 +lab spider 0.3958042205052336 +bar stair 2.397423897915629 +hang time 1.3458673614941719 +branch tea 1.0259753409518726 +club play 0.2325542254719394 +garbage lunch 0.896680314228867 +interior tower 0.3469555161510618 +couple race 0.9622643407887219 +bay porch 1.7403319986442647 +country library 0.9823930967758068 +black cigarette 0.8734556447360798 +handle tram 0.46537220931671974 +feel stair 0.09021795947527439 +oak petal 0.40122543745929534 +lake town 0.26060528656273063 +play sign 0.9678541126465653 +old race 0.30037343387475895 +parade store 0.1602092033922595 +curl leaf 1.631022445001127 +hummingbird moss 0.7341215995860257 +book gold 0.3193853188203129 +desk match 0.9398766060558289 +handle lighting 0.22650458897981557 +amphibian stork 1.2789550524055924 +asphalt crane 0.5174435167182748 +flight jaguar 0.16246533405531502 +bathroom stair 0.9040831971175332 +bay curve 0.3106524450661175 +foot train 0.8704196050049 +sunshine wet 0.8820360235728308 +clown jellyfish 0.7341215995860257 +family town 1.3902544050702217 +pattern time 0.7597412837333173 +cherry peel 1.1707701449007561 +bakery vehicle 0.7746647720443696 +cross post 0.5029896183161768 +garbage underground 0.30037343387475895 +bible leaf 0.3420930148101139 +curve dance 0.5650196893114071 +autumn hat 0.2556420772721466 +fabric handle 0.34433060966051665 +arm white 1.1019211445482804 +feel fun 0.6814017418771178 +bridge ceramic 1.0810851749552561 +ruin valley 0.20406817520416723 +castle patio 1.7436183932647502 +button grey 0.4939377191327199 +club sign 1.0487659428774003 +feather insect 0.3685019557744241 +hotel oak 0.40122543745929534 +alley punk 0.3631091806569695 +design muscle 0.23859903958813833 +circle snake 0.35440152953605475 +post white 3.0025624273733147 +animal clown 0.7341215995860257 +dinner sleep 0.2556420772721466 +office woman 0.8933966215954577 +line underground 2.9764147037897652 +waterfall wood 0.22736167465896276 +bed stair 0.8784954494887537 +dude husky 0.7341215995860257 +ceiling patio 0.63138340438345 +flight museum 0.42767300154147336 +paper tattoo 0.8870828046130841 +action subway 0.3615505482294399 +grave shore 0.2732573723557841 +sunshine winter 0.19697529120447704 +ford wall 0.41540806754529336 +band stocking 0.6474900300103277 +leg stripe 0.5578733837541446 +family square 0.41098037452351477 +eye sky 0.1778080199274208 +dinner morning 0.2556420772721466 +apartment beach 0.46537220931671974 +bus crane 0.9488525487787289 +path sunflower 0.4252270696185294 +red uniform 0.28257550054242997 +band ear 1.0231882198804834 +kitchen staircase 0.9040831971175332 +glitter vintage 1.7542453061904175 +gold texture 2.3035593150348075 +air carnival 1.1700279829770657 +guy stand 2.471862732671615 +bacon sweet 2.6946869778192384 +abstract feel 0.9352166894575229 +band bride 0.40564517367479336 +husky painting 0.2462082647358751 +postcard texture 0.36407864118688726 +makeup skull 0.11436189327583708 +guy tear 0.22650458897981562 +hamster lock 0.45987056899802703 +chess family 0.33919452132331185 +fun haircut 0.8473831477172247 +bud shade 0.2462082647358751 +ad track 0.8068652881971746 +chipmunk illustration 0.2462082647358751 +cold silver 1.361664928000693 +insect number 0.19714003874893818 +bar boat 0.999163004209552 +restaurant scenery 0.776613162390406 +hair stencil 0.558967697431916 +gravestone silhouette 0.776613162390406 +arm bicycle 1.0354068557208223 +hang morning 0.8965360396126776 +demolition tall 0.36407864118688726 +bedroom diner 1.6534108826714367 +candle line 1.218573521766335 +bar ship 0.999163004209552 +club cone 0.5499037420916606 +art christmas 0.31897798459332355 +travel wood 0.1602092033922595 +hang leave 0.6873641360847642 +abstract moon 0.11665945809838446 +auto round 0.9155633861670582 +mist temple 0.24606425104057852 +smile view 0.8094857271762925 +ripple shadow 0.44304159800748755 +haircut hang 0.8111814530732508 +brick skyline 0.46537220931671974 +school tear 0.9340210371649519 +action dress 0.4020371128063242 +cow station 0.38554543677908726 +play sailing 1.7874478306083705 +fungus pattern 0.23650728329627557 +button police 0.10270084755156976 +ceramic church 0.63138340438345 +home smoking 0.21130132024084403 +food wild 0.19397757367613666 +smile time 0.36407864118688726 +amphibian flamingo 1.2789550524055924 +apartment child 0.49026008482517114 +graveyard silver 0.23098512153204948 +outfit sign 0.3771773163044065 +dude kid 1.0064178795329988 +pole weather 0.1973602069202835 +city round 1.6172044964797894 +nail wolf 0.3316066782585483 +night sunshine 0.3655802549824683 +bath sleep 1.040271191174904 +cherry meat 1.9064784569453601 +blue poster 0.711674786079772 +fire movie 0.8204610598881147 +draw wing 0.3382304456704034 +arrow boxer 0.3685019557744241 +basket moss 0.3685019557744241 +pin wing 2.156710659030872 +apartment valley 0.46537220931671974 +guy poodle 0.6099151019039717 +dessert tomato 0.962635882068194 +egg family 0.16699179963073174 +aircraft guy 1.016026231920378 +dark flamingo 0.19341276425937487 +cheerleader scenery 0.4782014220163602 +pink shade 2.658197836164558 +garden smoke 0.2094373336359581 +glass mill 0.970383878296109 +race square 0.34149063560725906 +paper vine 0.4016004587767732 +smile stand 0.25564207727214655 +bay parking 0.38883825224337576 +monkey oak 0.6221225105861986 +bead redhead 0.42074938470748185 +animal hand 0.48775476880546226 +aircraft asphalt 0.7724677313662398 +magazine run 0.4848724038339787 +flight rain 1.6843624266950754 +bathroom garden 0.3958042205052336 +door skyscraper 1.7656190464078616 +makeup old 0.8520718797066755 +game sign 0.5926913007208748 +dead face 0.2435522143199267 +flower interior 0.3469555161510618 +bag wire 0.9041050690989123 +game goat 0.47764511600643145 +note rally 0.33112589208281545 +stair steel 1.3657761349014337 +diamond stencil 0.5717592490901936 +nature tv 0.24617604797132497 +abstract rally 0.6100592871105384 +party sailing 0.658415145220222 +beard kitty 0.7906838683883632 +building sandwich 0.09021795947527439 +belly black 0.4422040476716329 +leave walk 0.8084206464682843 +dark stripe 1.132459288991452 +ford valley 0.4226438027922603 +insect stork 1.1813455565351643 +animal mural 0.49026008482517114 +leather weed 0.8814684690625636 +pub wash 0.7208708722071848 +leave play 1.1687139276200982 +cop gravestone 0.49026008482517114 +book building 0.822559262125261 +flag quote 2.1555136161572417 +lantern oak 0.40122543745929534 +cottage outfit 0.8433732027391244 +downtown lock 0.4348031746078845 +pet poster 0.8919375765336983 +pool rust 0.6097823834275311 +stripe train 0.710499465231748 +beef downtown 0.31375469999779526 +blonde eye 0.285841242359324 +lady sunset 0.11436189327583705 +feel stop 0.5987659801869686 +old seat 0.08286969439724642 +ruin shore 0.397771569562526 +black paw 0.1999992939048624 +egg lego 0.359768481090939 +black pigeon 0.6188680333621979 +feather reptile 0.3685019557744241 +gymnastics port 0.13500927659699347 +mom snowman 0.49026008482517114 +party seat 0.2569093652802782 +lily pig 0.6838763277676232 +guy wire 1.0594601720384509 +orange shop 0.3183066186675281 +cactus fall 0.09562180709408917 +circle sport 0.5695004061147413 +redhead reflection 0.17755988183275973 +cafe reflection 0.4568009022532714 +outfit play 0.19697529120447704 +bar female 0.43550799577845284 +rope train 0.6278459146709718 +boardwalk drop 0.618644836222618 +abstract candle 0.2556420772721466 +church soldier 0.2462082647358751 +boxer reflection 0.17755988183275973 +crystal silhouette 0.5873601653000025 +feel guy 0.09021795947527439 +pattern pier 0.48152208557156284 +downtown field 2.2647577344860896 +beer wild 0.31401944655650993 +rope shore 0.6376822146711911 +airplane camera 1.1971238835898617 +button flower 1.7552491201369653 +curl lick 0.19496803777631894 +people stop 0.2689949083514918 +bucket insect 0.3685019557744241 +fence friend 0.9692086715216742 +can sketch 0.8508647239831896 +day horse 0.22504325020250254 +bear boxer 2.125161004958105 +iris necklace 0.699524131223075 +lighting person 0.2753969340555873 +boot cliff 0.3682775164688618 +landscape umbrella 0.6726115095665737 +man transformer 0.7028260319182231 +dark sand 0.6172106183647683 +ruin swimsuit 0.5288368081160595 +abstract rose 0.30037343387475895 +grass ruin 0.18048834307135642 +lighting stone 0.3708366558545583 +porch scooter 0.8634330261869448 +colour wild 0.8438763884547273 +crane stair 1.1956314704799669 +shore tear 0.22650458897981557 +cactus porch 0.49026008482517114 +belly draw 0.21502628502434076 +fabric photo 0.7903036093293658 +lamb lantern 0.4596238705537233 +owl rocket 0.5249815394768931 +party scooter 0.26928472837789313 +display scratch 0.7463120657532311 +ball curl 3.081797280522662 +cookie peel 0.8966753003204624 +couple post 0.7647370339758809 +field red 0.3118524754384311 +theatre wolf 0.40860676466001716 +blue swing 0.8554467331046621 +quote santa 0.36407864118688726 +dude feel 0.09021795947527439 +bath wine 0.25237688413044634 +brown wet 0.801544131810938 +kiss stop 0.6422233997843478 +husky match 0.5259474027436044 +cocktail garage 0.24606425104057852 +face stand 2.3747199404573482 +kid stop 0.5208124131350036 +boxer diner 0.8438517594518972 +city family 1.421572401455989 +parade table 1.9679909932326454 +design orange 0.27214883038859694 +lunch sunshine 0.19105746868229392 +fun tear 1.8845366777477612 +bikini ivy 0.4782014220163602 +step swimsuit 0.5486399177578685 +frog poppy 0.6838763277676232 +cross pub 1.5283646884162112 +frost lily 0.5038222350885062 +collage stream 0.9331567134733729 +chair holiday 0.13500927659699347 +coffee sun 1.6126548719862366 +lighting sleep 1.048746342435026 +mill wild 0.3284378344648866 +circle wig 0.3935022343768139 +highway squirrel 0.40122543745929534 +pin truck 1.0862823836995734 +shore small 0.15615056821070775 +punk vinyl 0.7716115161538786 +number web 0.7488629301068345 +brown demolition 0.16020920339225947 +interior skyline 2.8017418097003888 +breakfast floor 0.1973602069202835 +aerial clown 0.3685019557744241 +hat peel 0.3410336307596707 +baseball rainbow 0.5659059993548687 +foot mural 0.5746369553487574 +creature grey 0.952340963645343 +cross outfit 0.6994566085833464 +leave smile 1.1110637341582383 +fishing rainbow 0.7135365585941329 +bathroom dude 0.49026008482517114 +paint puddle 1.561953010298629 +skating sticker 0.2556420772721466 +dome uniform 1.849884737183783 +office sun 0.20072737086526743 +military reflection 0.31897798459332355 +fashion handwriting 1.0292210931190209 +cop ruin 0.2180839570569488 +blur metro 0.36407864118688726 +smile stop 0.8000643187929379 +cross mug 0.5368747600348549 +concrete pin 0.8318352513926043 +cigarette hotel 0.24606425104057852 +airplane market 0.7435174770769201 +architecture yellow 1.7806520983223972 +handle terrier 0.46537220931671974 +patio woman 0.4416208752883981 +green gull 0.7802058312838485 +dew parrot 0.24606425104057852 +country hang 0.22250658557040853 +stripe tank 0.6890987559853934 +hang tear 1.0020443182512762 +crochet family 0.14798532853456614 +machine sketch 0.48977258788196903 +feel haircut 0.42866059824812963 +match moss 0.5259474027436044 +art sailing 1.013408338031787 +foliage restaurant 0.7784929891481046 +tea village 2.3973533719147735 +branch feline 0.3316066782585482 +day plane 0.6029237521025581 +gold idea 0.36407864118688726 +moon mushroom 1.5716389963867652 +interior tall 0.19697529120447704 +mallard portrait 0.3685019557744241 +fun morning 1.3883454016784746 +drip rust 0.2757646271173888 +fun stop 0.7683654389543131 +gull mill 0.8222521540856051 +blue hand 0.601656319240748 +bucket curve 0.2753808130705887 +patio swan 0.49026008482517114 +body miniature 0.5869805240333266 +cafe child 0.49026008482517114 +belly stripe 0.20942052194178087 +mural taxi 0.9040831971175332 +furniture man 0.7028260319182231 +bead library 0.7378603100747106 +daffodil wool 0.435817846804268 +collection jellyfish 0.2462082647358751 +country elephant 0.3116964752729283 +line temple 0.5795413188349013 +bead chess 0.3352931899562428 +skirt wig 2.076187551555213 +daisy flood 0.2180839570569488 +camera rally 0.07449142661257128 +bottle construction 0.43154536809880917 +computer railway 0.6484453227451429 +hair lizard 0.3465334557051752 +jump sunlight 1.5720896593864433 +desert smoke 0.31401944655650993 +chopper window 0.7978387302807989 +hang stop 0.67400715939496 +animal sandwich 0.24606425104057852 +cafe draw 0.2950191925196306 +boxer pyramid 0.2951902345390629 +arm television 1.0354068557208223 +feel hang 1.4631336695082648 +asphalt moon 0.35785448671652587 +car skull 0.24606425104057852 +outfit rock 0.32821095225632935 +mom stop 0.34180991563192586 +drip round 0.6851485382339235 +friend stop 0.3418099156319259 +asphalt water 1.3340879569342081 +cafe spiral 1.5949323281804368 +green phone 0.3237305984122155 +duck outfit 0.5601791491982159 +coast zebra 0.34433060966051665 +breakfast makeup 0.11436189327583708 +purple stripe 0.2838195183119489 +clothes skyline 0.46537220931671974 +step wind 1.1558770876856665 +portrait rocket 0.9035281201591171 +break glitter 1.6807730861671926 +construction sailing 1.0788141812203382 +boy gate 0.4416208752883981 +lens storm 0.4962834497824947 +orange school 0.24855586479775135 +gasoline pepper 1.3210740230871114 +sticker track 0.7381739699882139 +furniture nature 0.24617604797132497 +play rail 0.13500927659699347 +port squirrel 0.936119546265782 +flood neon 0.3323115901151653 +morning tear 1.1228181177668797 +memorial rope 0.5288368081160595 +home wet 0.950878459069724 +feather sunflower 0.3685019557744241 +house stop 1.1101141051938015 +plant skate 0.6498497470362472 +cocktail dandelion 0.24606425104057852 +airport foot 0.5746369553487574 +display pond 0.11436189327583708 +alley bloom 0.24615561032735345 +escalator redhead 0.3685019557744241 +caterpillar paint 0.8673206202023181 +bacon wild 0.2949367320085482 +stand tear 1.1190264239503587 +collar tiger 0.44796995559163894 +car hawk 0.7113844676529714 +burn reading 1.5646338101659512 +barn mug 1.342402793467821 +bacon guy 0.8146080429532483 +keyboard soldier 0.49026008482517114 +track yellow 0.694812654221371 +bag dude 0.6830452354464362 +lady stop 0.341809915631926 +arrow mural 0.7903036093293658 +jacket stream 0.16327759402295633 +jaguar storm 0.11436189327583708 +morning stop 1.135241035666701 +cemetery male 2.562557767137864 +jump stitch 0.6298632913430873 +family hawk 0.4611663291731767 +monster rock 0.7207742135122217 +feel time 1.2922870818007561 +face hang 0.5492934602775559 +pizza railway 0.15615056821070775 +cross shopping 0.6363214473074927 +craft van 1.8285072068970116 +art beer 0.34081306900402064 +beard flamingo 0.5276247783484904 +monster shell 0.4399202734767683 +bench mask 1.9764124039762856 +club river 0.1999992939048624 +boxer child 1.0360650273330354 +fungus leather 0.24606425104057852 +lick stop 0.7215003787623631 +creature reading 0.13447378654672407 +bed candy 0.24606425104057852 +feel spiral 1.1332378332527142 +hockey sign 0.5840692485020269 +daughter pub 0.49026008482517114 +lighting man 1.6186464097972029 +dude post 0.8773992202657502 +mill puddle 0.5459520472115538 +santa table 0.41925831830663834 +action whisker 0.2388004024601462 +dog silver 0.4808368123396563 +lip run 0.8116511236887864 +porch pug 0.49026008482517114 +bird pregnancy 0.13500927659699347 +camera crow 0.3685019557744241 +lick marble 0.6332815268811736 +rabbit stop 0.5924988234292128 +paper railway 2.9897293607468 +poster tank 0.39081036714585216 +clothes transformer 0.9040831971175332 +cactus leg 0.3316066782585482 +hold theatre 1.503852138146191 +lighting panda 0.2462082647358751 +punk toe 0.29367188106114833 +branch protest 0.19697529120447704 +daughter graphic 0.49026008482517114 +air fruit 0.4606250745358806 +book copper 0.3019573013033404 +night sticker 0.2556420772721466 +explosion table 0.19697529120447704 +snake strawberry 1.4588318925220523 +dragon drop 0.3982982709839512 +burn ripple 0.7483188447611515 +clock pink 0.42074938470748185 +kitten lingerie 0.49026008482517114 +chicken star 0.684134327144412 +seed stair 0.41287916370026734 +leave night 2.066282861689887 +small valley 0.15615056821070775 +green number 1.0111516536811582 +leave morning 1.9910052963912275 +lock mannequin 0.7096261298393226 +shade whisker 3.0124555031134013 +collar garbage 0.6360758192737357 +ink organ 0.27126350165026464 +poppy store 0.4416208752883981 +smoking vine 0.24606425104057852 +daffodil frost 0.5038222350885062 +canal coffee 0.28095054702309946 +camera mallard 0.49026008482517114 +noodle pigeon 0.24606425104057852 +couple square 2.290036765233 +fly keyboard 1.2221381553335202 +soup view 0.47507959898419894 +goat pebble 0.4843226671824457 +abandon button 0.10270084755156976 +belly dark 1.3916338382137396 +diamond parade 0.2556420772721466 +horse sweet 0.31149411475156624 +ancient pod 0.4416208752883981 +banana foot 0.3751984435653092 +bucket morning 1.3524716570667008 +bucket duck 1.342402793467821 +dessert eye 0.1778080199274208 +cold flag 0.22195989916570127 +skin television 0.8791415846760031 +bedroom feline 0.49026008482517114 +palm traffic 0.2556420772721466 +necklace snow 0.39191695614796057 +lick origami 1.0857609181886936 +beetle chocolate 0.19105746868229392 +monkey pumpkin 0.6221225105861986 +beard sport 0.6292906122348088 +gasoline summer 0.36407864118688726 +footprint holiday 0.36407864118688726 +car pig 1.6948507101116492 +grave santa 0.4021951873465942 +iron splash 0.4772495559351907 +dirt gymnastics 0.8123783804785742 +orange wet 0.7240908783281446 +ceramic ocean 0.15615056821070775 +vintage zebra 0.15615056821070775 +hair shore 0.4620474128939531 +marble postcard 0.30037343387475895 +fish leg 1.2389451863740806 +book smoking 0.09704747134798115 +canal number 0.2982681128664572 +cherry lamb 1.3853708447043054 +bag cop 0.6830452354464364 +leaf moon 1.6266016508688212 +kitchen outfit 0.8433732027391244 +garbage jean 0.6926886854611991 +bedroom downtown 0.46537220931671974 +grass ski 0.4226917730245185 +day hold 1.266547454521074 +mug vehicle 0.7548596620360015 +lighting small 0.5935623029244628 +computer farm 0.46537220931671974 +feline pumpkin 0.6221225105861986 +jean map 0.7903036093293658 +book ceramic 0.6532777394670705 +van vine 0.4017616835735567 +desert roof 0.44344707869574596 +seagull tag 0.21116834682142469 +jewelry muscle 0.2751155985679028 +chocolate jellyfish 0.19105746868229392 +boxer stair 0.49026008482517114 +jaguar pier 0.49026008482517114 +nut waterfall 1.344653723661388 +bread chair 0.1795035030157553 +goat vinyl 0.24606425104057852 +kitten rain 0.19105746868229392 +hang smile 0.36407864118688726 +bikini sculpture 0.644879395088091 +bible dirt 0.28771633329085666 +portrait underground 0.2556420772721466 +clock stripe 0.7435174770769201 +bud floor 0.41906032316040137 +air knit 0.2637485411489089 +idea stop 0.636891513907851 +haircut stop 0.6599604804511711 +storm sweet 0.5255826225374256 +auto santa 0.49026008482517114 +drive ear 0.5195409252154294 +bear subway 0.3685019557744241 +pumpkin road 0.28257550054242997 +makeup race 0.593425821634194 +wash web 0.5445339309832059 +haircut pyramid 0.2979479583941496 +blonde rock 0.7233363770679737 +belly field 1.5527204185973418 +cat locomotive 2.784740852866589 +angel pod 0.3480670321792788 +makeup square 0.7020910490363343 +cigarette tile 0.24606425104057852 +museum scratch 0.14973611338783155 +butterfly stadium 0.3685019557744241 +graveyard porch 0.46537220931671974 +flame peacock 0.24606425104057852 +chopper poppy 0.3862349893248791 +bloom friend 0.2461556103273535 +gun jaguar 0.5852904192956532 +guy stop 0.9413234584431615 +cloud kitten 0.11436189327583708 +pillow stone 0.5188062770655808 +stocking tomato 0.28257550054242997 +sign stocking 0.5165895791129488 +angel asphalt 0.3383952315787684 +ski skirt 0.7784929891481046 +cat purple 0.09172563448442388 +diner muscle 0.5508463240317476 +marble sunglasses 1.0277005086330826 +berry fly 0.4891021987912709 +chocolate rock 1.3157388237328 +airplane guitar 1.1971238835898617 +bread ocean 1.4989473166571199 +bay chipmunk 1.6450657276077953 +tall wool 0.19697529120447704 +restaurant violet 0.3685019557744241 +drop fun 0.6747939866084858 +cemetery cone 0.41656132112803906 +face stop 2.4280165323726783 +dude stop 0.34180991563192586 +chapel dusk 0.7310226809303961 +dragon oak 0.5239717190403812 +drug reflection 0.09021795947527439 +bakery panorama 0.7903036093293658 +mallard poster 1.2895629874518901 +snake taxi 0.45403359926442777 +dessert head 0.19105746868229392 +puddle red 3.054859120824364 +brick dress 0.7784929891481047 +building zombie 0.535398736672435 +neon tank 0.275967051021335 +bible cottage 0.7903036093293658 +bath panorama 0.6863171876444359 +automobile fabric 0.7903036093293658 +gun picture 0.6571768522769237 +cow table 0.37348323366061886 +bear construction 0.16437985540780273 +dye kiss 0.9509121974492026 +baseball bear 0.3685019557744241 +crab grave 1.423882208151595 +craft soup 0.28248304680761266 +horse interior 1.4907643195775995 +grass stop 0.2789291871528164 +jellyfish punk 0.5835669898237238 +clown flood 0.2180839570569488 +aerial violet 0.31718447702480335 +crab ink 0.683637089503563 +canyon pizza 0.24606425104057852 +butterfly leave 0.732719366058397 +hamster party 0.4354312620522404 +lego rodent 0.49026008482517114 +branch lego 0.5579604916293577 +game husky 0.8140793725815302 +camel highway 0.49026008482517114 +baseball cheetah 0.3685019557744241 +stripe weather 0.13202848045181464 +journal squirrel 0.3546832362472607 +bacon view 0.16498275972065252 +dandelion stand 0.36462610632184306 +cheetah flame 0.24606425104057852 +party sink 0.17716712226294404 +floor transformer 0.739875576806038 +amphibian berry 0.5375920437080091 +marble monkey 0.435817846804268 +jump salad 0.06343382613934406 +subway valentine 0.31718447702480335 +baseball cactus 0.3685019557744241 +ancient poster 0.9240834277651541 +grass skull 0.24606425104057852 +cattle web 0.40431850354440413 +drive lego 0.7019612313286547 +pyramid swimsuit 0.7019612313286547 +chess sleep 0.2556420772721466 +bag wild 0.3003661424831463 +chapel whisker 0.21096423802060738 +chair word 0.40202946858266125 +angel construction 0.6834238176806069 +exhibition soup 0.30037343387475895 +costume ocean 0.15615056821070775 +pigeon reading 0.13447378654672407 +animal candy 0.24606425104057852 +insect mom 0.9734095820338418 +canyon piano 0.34433060966051665 +leather swan 0.24606425104057852 +goose outfit 0.36544661678653567 +sunglasses weed 0.699524131223075 +play wine 0.5462000499940193 +monkey restaurant 0.49026008482517114 +goose locomotive 0.435817846804268 +garage mammal 0.49026008482517114 +drug wolf 0.9842893085441266 +graveyard pug 0.46537220931671974 +chair ipod 1.1200106440913091 +mammal rope 0.40122543745929534 +hill rust 0.39896608318192456 +petal pug 0.49026008482517114 +interior mushroom 0.33267131829961083 +chocolate squirrel 1.1252046165108167 +reading seagull 0.13447378654672407 +tea whisker 0.2187484566391637 +cactus gasoline 0.24606425104057852 +chocolate wig 0.25237688413044634 +dragonfly piano 0.3685019557744241 +leather sunshine 0.29377960718498 +brick rabbit 0.47290129280272647 +burger mountain 0.2660817683815021 +canal silhouette 0.5564133697701246 +paw theatre 0.19105746868229392 +family red 0.4147862978656488 +concrete swan 0.49026008482517114 +bedroom canyon 0.46537220931671974 +breakfast staircase 0.24606425104057852 +flame sidewalk 0.24606425104057852 +carrot city 0.31555559652833404 +ipod rope 0.7724677313662398 +meat pond 0.19105746868229392 +female machine 0.6636472057460969 +piano wolf 0.36850195577442413 +girl wind 0.24613115049317247 +frog subway 0.577990987513727 +map weed 0.5568523985705897 +bike flame 0.24606425104057852 +dew engine 0.24606425104057852 +cake library 0.5744587214735293 +carnival wool 0.19697529120447704 +bottle library 0.7378603100747106 +dragon furniture 0.4416208752883981 +skull storm 0.11436189327583708 +punk skyscraper 0.3631091806569695 +gun pizza 0.22451752846050255 +female square 0.7354233300048376 +pub snowman 0.9040831971175332 +meat moon 1.668221345991953 +dragonfly wine 0.15615056821070775 +flight whisker 0.2368489145959238 +boxer lighthouse 0.49026008482517114 +lick pier 0.11436189327583705 +mirror raspberry 0.3352931899562428 +bike hummingbird 0.49026008482517114 +cafe frog 0.7113844676529714 +soup wool 1.0384002729749664 +carrot memorial 0.262066291820156 +lion square 1.906007995894759 +bucket girl 0.36850195577442413 +feline nut 0.5573586639319277 +gun quote 0.10270084755156976 +furniture pizza 0.24606425104057852 +goose stencil 0.435817846804268 +chicken knit 0.38623498932487915 +ceiling mug 0.37404947998771254 +fish rocket 0.5751369096024854 +flamingo office 0.16437985540780273 +rabbit sphere 0.2769994167846811 +ice sheep 0.5945416545946843 +car tongue 0.7204540451336574 +bracelet mountain 0.34433060966051665 +lego weather 0.24606425104057852 +cigarette skating 0.36407864118688726 +tomato whale 0.6221225105861986 +chess cigarette 0.31401944655650993 +fish theatre 1.5491678190226963 +donut panda 0.24606425104057852 +machine pond 0.19105746868229392 +guitar nude 0.783730427295369 +giraffe mist 0.24606425104057852 +bread cliff 0.15615056821070775 +construction violet 0.27444223707983956 +cheetah soup 0.19105746868229392 +puppy skyline 0.46537220931671974 +child ford 1.0499551315050575 +cheetah phone 0.42074938470748185 +carrot design 0.7535216955323941 +jellyfish rally 0.07449142661257128 +gun stair 1.33303894603019 +cafe lizard 0.49026008482517114 +post tulip 0.545814243363881 +grave hat 0.2879328384144353 +angel gasoline 0.28282943130319305 +giraffe harbor 0.4782014220163602 +feather truck 0.3685019557744241 +festival whisker 1.4896421134760098 +muscle tulip 0.45428435888139457 +bikini pizza 0.24606425104057852 +bakery zebra 0.49026008482517114 +gem jewel 4.448415410238224 +midday noon 4.983662364087664 +cushion pillow 3.939048838928967 +boy lad 3.2275138664644087 +cock rooster 4.656867049430634 +implement tool 2.018235638973914 +forest woodland 4.17346069732012 +autograph signature 4.098104749172684 +journey voyage 3.202643639550416 +serf slave 3.919887703337582 +grin smile 4.506541109368001 +glass tumbler 3.762038486040553 +cord string 3.1989891898445357 +hill mound 4.261508068372782 +magician wizard 4.053384489945266 +furnace stove 0.9040831971175332 +asylum madhouse 4.666226702008161 +brother monk 4.361597320101667 +bird cock 1.6186414127639743 +bird crane 1.3470171244100364 +oracle sage 2.74204515727115 +sage wizard 0.911704175225505 +brother lad 1.0815506406396596 +crane implement 0.8573614133451198 +magician oracle 0.911958804912311 +glass jewel 0.7479626893841643 +cemetery mound 0.37701757072481573 +hill woodland 0.46537220931671974 +crane rooster 1.7939484359130025 +furnace implement 0.9040831971175332 +bird woodland 0.4163027399018763 +cemetery woodland 0.46537220931671974 +food rooster 0.19105746868229392 +forest graveyard 0.34433060966051665 +lad wizard 1.0815506406396596 +mound shore 2.553431230469916 +automobile cushion 1.046194153716959 +boy sage 0.911704175225505 +monk oracle 0.911958804912311 +shore woodland 0.46537220931671974 +coast forest 0.3552085748373884 +asylum cemetery 0.46537220931671974 +monk slave 1.0815506406396596 +cushion jewel 0.7784929891481047 +boy rooster 0.7341215995860257 +glass magician 0.6761973806230632 +graveyard madhouse 0.46537220931671974 +asylum monk 0.49026008482517114 +asylum fruit 0.7075430428848697 +mound stove 0.851813386758627 +automobile wizard 0.49026008482517114 +fruit furnace 0.7075430428848697 +noon string 0.22250658557040853 +cord smile 0.16020920339225947 +provincialism narrow-mindedness 4.253186206583952 +provincialism partiality 3.699297916737581 +instrumentality department 2.173321797709194 +instrumentality utility 3.694902905769208 +involvement action 1.5473994177678005 +involvement implication 4.4858786721053345 +ecclesiastic clergyman 3.2354743370814636 +brigadier general 4.1992888713130565 +aspirate remove 1.235784658267874 +monotype machine 1.914418462047129 +campfires fire 3.8134895249020677 +cognizance knowing 3.5443274137100733 +imperfection state 1.1446776261547813 +assessment charge 2.8310564609402173 +assessment assay 3.462287052448554 +principality domain 3.80735780992809 +diagonals line 3.5009186217943307 +antifeminism sexism 4.506541109368001 +attackers wrongdoer 2.6848092876779575 +friendships brotherhood 1.103684071168872 +elector voter 4.282956766616314 +vulgarism profanity 4.204243159339155 +vulgarism inelegance 3.8057528971402537 +wanderers program 3.092739520619342 +wanderers nomad 3.9033877436635267 +hyperlink link 4.675820183413733 +radiators beginning 0.19341276425937484 +radiators system 1.3443925069146287 +postmodernism genre 3.8368434275251437 +excavations site 3.555788305282216 +excavations removal 1.03460373294839 +listeners eavesdropper 4.506541109368001 +inabilities insufficiency 3.6596277240592565 +inabilities incomprehension 3.4457193089863303 +monocultures culture 4.281452621151683 +tricolour flag 3.693970615267486 +omnipotence state 1.1446776261547813 +disinheritance discontinuance 4.20551111370402 +cession relinquishment 3.929478106641863 +assessments charge 2.8310564609402173 +assessments classification 3.2855997102299295 +prescriptions medicine 2.0564301005400383 +prescriptions direction 3.006550827015296 +antipsychotic lithium 1.0675770642439613 +roosters cockerel 4.682632368423683 +yodeling singing 3.6816068157628705 +unisons concurrence 4.155178901005695 +unisons agreement 4.074711295783691 +preteens juvenile 3.2934662840591504 +monogram symbol 2.45277985558373 +opalescence brightness 3.8232409604137763 +coeducation education 3.482776926139779 +exceedance probability 4.029218160613725 +tricycle pedicab 4.682632368423683 +ruralist rustic 3.9394526468287117 +ruralist advocate 2.883521805232039 +conjurors enchantress 3.771118409151276 +comparing compare 0.36407864118688726 +hypercoaster roller 2.704332381597317 +pittance payment 2.8784614665435146 +hypermarket supermarket 4.682632368423683 +confluent branch 4.380011110649996 +anterooms building 1.7186187063819502 +summonings page 0.11665945809838446 +summonings demand 0.6698498392089841 +antechamber room 2.6703247739731006 +concavity shape 3.1732861975800843 +concavity recess 3.2775126191910235 +spoonful containerful 3.21281035244552 +impurity adulteration 3.700733882877573 +impurity waste 3.3522870522856127 +virginals harpsichord 4.506541109368001 +hypertexts database 1.306055411367171 +inheritances acquisition 3.413053572949653 +deadness quality 1.7432193418263076 +deadness inelasticity 4.260237436022416 +conformism legalism 4.506541109368001 +tripods tripod 4.506541109368001 +unicycles wheel 2.408565996853854 +unicycles bicycle 2.6144465066775213 +preservers cook 3.7882774815119955 +preservers worker 1.6848077479050394 +autografts graft 4.381142173609593 +subfamily group 1.0319358886086012 +suppressor gene 3.550917149706043 +suppressor restrainer 4.283052759212183 +inquisitor inquirer 4.204100411725429 +gibberish dutch 1.1973036187325161 +championship status 2.5531432139289 +championship contest 2.851900444486936 +sheikhdoms domain 3.80735780992809 +backwardness idiocy 4.20551111370402 +deviationism desertion 4.379967880397135 +capitation tax 3.32090453240609 +periodical publication 2.8301748161441647 +distillate liquid 2.2370318642448255 +dictatorship state 1.646314304195443 +anticyclones high 4.073579348515003 +circumference size 3.160241160525985 +repositions move 1.803547871178722 +librarianship position 2.8593330533406336 +entreaty request 3.253311662516289 +convertible car 3.1998838510051604 +convertible security 3.234087829766846 +kindergarteners child 3.525796394432652 +defiles spot 1.5584627072223347 +hankering desire 3.25822868964939 +hankering longing 3.728389858984358 +criticality juncture 4.4613769025289285 +criticality urgency 4.204326812715181 +mayoralty position 2.8593330533406336 +companionships friendship 4.284692359751645 +primates priest 3.5169407747357355 +postboxes maildrop 4.506541109368001 +baseness unworthiness 4.363266514495816 +encroachments inroad 4.6623870254340565 +encroachments entrance 4.665615922054996 +deregulating liberation 3.7585313565748515 +shrieks shout 3.8074574107587265 +shrieks cry 3.7632361388366986 +territorials soldier 3.255266589263279 +territorials guard 3.8792615581898002 +associations sociable 1.2492991257590589 +admiralty department 3.1371873566106223 +admiralty position 2.8559418715772518 +autobiographer biographer 4.506541109368001 +planners schemer 4.027171036083054 +planners notebook 4.677217341850912 +supplement leverage 0.5675110981753969 +brightness intelligence 3.5960097728088045 +brightness radiance 3.814830759247897 +preschooler child 3.525796394432652 +baggers machine 2.2524243606531633 +baggers workman 2.9593231118812953 +willingness wholeheartedness 4.380232910643015 +replications reproduction 4.364922338080649 +replications procedure 1.1537877979952798 +retrials trial 4.1349457580883735 +fantasist creator 2.7305037491710773 +repulses disgust 0.36407864118688726 +repulses fight 2.294711175672974 +humanness quality 1.501164591393355 +parallelism similarity 3.6393962992977524 +sightedness sight 3.666116315317104 +battleships dreadnought 4.506541109368001 +sufferance self 0.9804987204430126 +monoplanes airplane 3.4651484242097768 +hyperextension extension 4.534994639803777 +hilarity gaiety 4.370168865320519 +appearance apparition 4.064887462686017 +macroevolution evolution 4.1355714881680035 +adventism christianity 3.476778043708118 +breather submarine 0.627845914670972 +breather respite 4.6759054948759315 +transducers device 1.2459568195786166 +icelandic scandinavian 4.028573524609865 +uncertainty speculativeness 4.00407657013728 +painkillers hydrochloride 1.0675770642439613 +luxuriance abundance 3.8673166199369042 +strangers person 0.911958804912311 +utilitarianism doctrine 2.771474759683706 +puffery flattery 4.284692359751645 +noncitizens traveler 2.75066625369551 +monsignori priest 3.525029129944179 +functionality practicality 4.284692359751645 +spoonfuls containerful 3.21281035244552 +instructorship position 2.8593330533406336 +recorders box 0.8018863400065782 +recorders official 3.347798581983543 +headship position 2.8593330533406336 +credentials document 2.286017875615928 +credentials certificate 3.9435543335128123 +deformity appearance 2.7905148403925417 +religionist person 0.911958804912311 +warmness protectiveness 4.281504685728924 +warmness hotness 4.110422887807059 +cardinality number 2.484969956308275 +irrationality insanity 3.942269678929439 +absorbance density 4.0796522646034985 +endangerment hazard 4.203585947254222 +decomposition fragmentation 4.631923617760656 +decomposition algebra 4.202478013740569 +autobiographies memoir 4.676238048687694 +subspecies group 1.0319358886086012 +embellishment expansion 4.479849024574544 +fractures pervert 0.2732573723557841 +anamorphosis evolution 4.135166594565017 +anamorphosis copy 3.5266305214058105 +interpreter person 0.8554621078477702 +interpreter symbolist 4.490511229551907 +meadows grassland 4.0294198546483395 +obtainment acquiring 3.259386494486875 +attendances frequency 3.5820076136402585 +attendances appearance 4.3696293644532815 +protraction continuance 3.277739748602749 +exclaiming call 2.9587925436223608 +survivalist person 0.911958804912311 +partnership relationship 4.049278817429533 +microorganism organism 0.6266557228320272 +impossibilities unattainableness 4.505857338353433 +performance universe 0.5809140924065567 +performance musical 2.9418275407203223 +feudalism organization 1.015223097892164 +behaviorist psychologist 4.20551111370402 +interjection break 4.153458379224004 +interjection exclamation 4.273134638212437 +consequences position 0.6644492857510436 +consequences result 3.6117811696457744 +preschoolers child 3.525796394432652 +unmentionables garment 2.547499717046908 +subeditor editor 3.8691562768298065 +winners walloper 4.275495696260295 +persuasions electioneering 3.978596560230032 +persuasions belief 2.1767946510694594 +conformations balance 4.4248749118526645 +conformations curvature 3.3656399495175617 +seriousness badness 4.482978787965832 +seriousness gravity 4.553624243673483 +metabolism organic 0.24606425104057852 +reprints publication 2.6290893261062993 +replication procedure 1.1537877979952798 +replication copying 3.7785115431530856 +highjacking robbery 4.026831020278368 +repurchases buy 0.36407864118688726 +inversions abnormality 2.606384442591061 +inversions phenomenon 2.3689204003869944 +spaciousness largeness 3.973417626850721 +crudeness wild 4.675188142094146 +crudeness impoliteness 4.502752654260752 +requirement duty 3.605496868202358 +requirement thing 0.9438506093566026 +contortionists acrobat 4.138564324073407 +dysentery diarrhea 0.36407864118688726 +occlusion thrombosis 3.864361120288575 +reenactor actor 3.498678656508585 +attractor entertainer 2.7229796189886715 +macroeconomists economist 4.20551111370402 +lectureship position 2.8593330533406336 +crusaders warrior 4.076513194782545 +crusaders insurgent 3.9737467609464106 +formations flight 2.9567053300758364 +formations filing 4.11300614188009 +bestowals giving 3.8922198959471994 +bestowals gift 3.7932130686833925 +commissions order 3.163048827555704 +hypersensitivity sensitivity 3.5413523047075284 +inquisitiveness nosiness 4.682632368423683 +monograms symbol 2.45277985558373 +innovativeness originality 4.381104991130271 +impulsion force 3.1509623316392883 +impulsion drive 4.488083932094767 +anarchist radical 3.65573830134897 +circumcision banquet 0.25564207727214655 +socialites person 0.911958804912311 +rearrangements reordering 3.942269678929439 +entombment funeral 4.506541109368001 +discipleship position 2.8593330533406336 +inbreeding coupling 3.9825717726308643 +lenience softness 4.588381655709195 +lenience mercifulness 4.329207862061627 +procurator agent 3.156387928905689 +excitations arousal 3.791812523930251 +excitations fever 1.1847442046351555 +untruth statement 2.005302572996735 +malfeasance wrongdoing 2.5761168576676354 +supporters trader 1.0015920995097432 +translocation organic 0.24606425104057852 +shouter crier 4.611175721617696 +concerti concerto 4.682632368423683 +reformism doctrine 2.771474759683706 +inflammation pitch 1.4021111203121372 +gathering sponge 0.277202517828265 +gathering hive 2.4217523701867383 +admittance right 2.969393015276755 +performing church 1.2087358129998962 +pretenders ringer 4.3509983839793644 +rhythmicity lilt 4.381602372759701 +significances meaning 3.918033506778493 +transvestitism practice 2.8666566705341787 +royalist monarchist 4.506541109368001 +commodes drawers 0.8844432409888644 +commodes fixture 3.6901253732229873 +hypervelocity speed 3.8907755670648956 +measurements viscometry 3.1641184285457955 +freighter cargo 0.9040831971175332 +bestowal giving 3.8922198959471994 +bestowal gift 3.7932130686833925 +diagonal line 3.5009186217943307 +ingroup bohemia 3.704540115313511 +hyperlinks link 4.675820183413733 +intelligence shrewdness 3.6133595204200666 +intelligence agency 2.3177528249699777 +autopilot unconsciousness 3.6812403174575383 +enjoining command 1.6950270239779912 +reelections election 4.018289604575745 +tidings float 0.23255422547193938 +tidings ebb 0.2556420772721466 +rhymers writer 3.15382014542663 +germanic scandinavian 3.281163078751429 +fording traverse 4.140434282580028 +fording deep 0.19697529120447704 +postposition place 4.498874855696802 +hypertext text 2.874906674026688 +unicyclist pedaler 4.506541109368001 +spatiality property 1.750306299420354 +strains trouble 2.4649954357622663 +strains rack 1.0894884253500008 +resistor splitter 0.49026008482517114 +pastorship position 2.8593330533406336 +intercession prayer 3.7908109631964524 +evangelicalism revivalism 4.682632368423683 +cofactor compound 1.7635639474008802 +registry register 4.28132677638135 +dissociations compartmentalization 4.197690457455194 +dissociations separation 2.911880357960606 +griping bite 0.553792880732308 +scarceness rarity 4.496934417763468 +corroding decay 2.352603899265777 +copilot pilot 3.7995829813004507 +confinements pregnancy 1.1302432550124766 +confinements restraint 3.7375391384255807 +commode drawers 0.8844432409888644 +commode seat 2.4469705183410237 +fluidity thinness 4.460550023927757 +fluidity changeableness 3.6173666441201027 +academicism traditionalism 4.680494562198813 +subhead heading 3.7770627183324734 +independences independent 0.2732573723557841 +independences victory 3.7770585317784584 +fulfillments satisfaction 4.044814563431171 +fulfillments self-fulfillment 4.681563200677113 +premeditation planning 3.926766456138033 +stewardship position 2.8593330533406336 +coefficient self 0.2556420772721466 +algebraist mathematician 4.08057237709572 +postmark marker 3.6018746882668538 +postmark stamp 2.440423301090344 +establishment organization 3.944414688130445 +establishment beginning 3.3344026703609404 +recitalist soloist 4.682632368423683 +presenters communicator 2.3723422069157194 +presenters advocate 2.846374990525229 +premisses premise 4.08057237709572 +gardens sink 0.35848399237880746 +phosphate drink 2.2810816311778384 +phosphate sodium 1.3917078090409285 +airship trade 0.05523471587671592 +submariners bluejacket 4.284692359751645 +refresher beverage 2.373604672624775 +moderatorship position 2.8593330533406336 +modesty demureness 4.527023246296983 +nonperformance negligence 3.868517404132033 +acoustics remedy 3.4177321615164304 +acoustics physics 4.2006464015604905 +reckoner statistician 4.196739431163407 +reckoner handbook 3.8351038147189938 +vocalism voice 3.867938323729536 +vocalism system 3.040638062839465 +continence self-discipline 4.085316665821753 +internships position 2.8593330533406336 +ideality quality 1.501164591393355 +importance momentousness 3.6318258327175967 +importance primacy 4.376131381419883 +rediscovery discovery 3.544777778904314 +microfossils fossil 4.138250751575894 +unknowing ignorance 4.20551111370402 +commandership position 2.8593330533406336 +ceramicist craftsman 3.245221952267325 +teaspoonful containerful 3.21281035244552 +newness brand-newness 4.284692359751645 +unconcern heartlessness 4.197751961185623 +unconcern carefreeness 4.650700623311722 +inducement motivation 3.284059525391513 +inducement causing 3.4874589436759393 +restrainer chemical 1.7767232611935282 +restrainer nazi 4.282368038607431 +follower tail 4.258753569967268 +follower cultist 3.0674851471004887 +traversals travel 2.7966904709885365 +traversals skiing 1.1422403196853046 +requests invite 3.228418507448005 +posthole hole 3.458543747277983 +abandonment absence 0.9351993539586498 +pestilence plague 4.292803241638998 +pestilence disease 2.1541523053294167 +antagonist person 0.7924604353879223 +antagonist muscle 2.8128474235859797 +puritanism sternness 4.4963241062662584 +algebras vector 1.5450383565525563 +monotony constancy 4.312720567945908 +monotony unvariedness 4.5238567402143826 +princedom domain 3.806341112994751 +princedom rank 3.1893906177256204 +sublieutenant lieutenant 4.283956518605566 +conflagration fire 3.8134895249020677 +decompositions decay 4.200878525896636 +decompositions algebra 4.202478013740569 +intelligences brain 3.5829649049114543 +intelligences military 1.7260761477319262 +indirectness characteristic 3.3532032713371205 +skillfulness command 3.6835473468001845 +deserters quitter 4.37936754681186 +engineering design 1.3501036142496634 +engineering plan 1.3613860701674212 +subordination relation 0.7768479739838301 +subordination dependence 4.278011742188918 +cofounder founder 4.379137708266528 +membership body 2.835002811372983 +membership relationship 3.2411114290054632 +embroideries needlepoint 3.867888254036653 +embroideries expansion 4.500077441541311 +protectorship position 2.8593330533406336 +unilateralist advocate 2.9222660081258964 +convector heater 3.7520542686340095 +subroutines software 2.970825139382492 +brittany france 2.2657152601560178 +accomplishments attainment 3.5299691009975325 +accomplishments horsemanship 3.638992593467779 +microcircuit chip 1.1586065030036077 +procreation generation 4.376086355770722 +postponements adjournment 4.676927517637512 +postponements extension 4.360171931664444 +contraception control 0.9662314546005413 +lushness abundance 3.8673166199369042 +embroiderers embroideress 4.682632368423683 +wilderness disfavor 4.674395969365358 +wilderness bush 4.077774988743409 +microflora microorganism 2.461218130581344 +acceptance blessing 3.406952040719145 +acceptance recognition 4.269586153952367 +unfortunate prisoner 2.893757252648266 +unfortunate black 0.9587540867080315 +importances standing 3.2621622567713073 +importances deal 0.34574657930324854 +circumnavigations travel 2.7966904709885365 +interrelationship psychodynamics 4.681563200677113 +heterosexism discrimination 3.901943850179788 +improver benefactor 3.4124141903305265 +improver attachment 3.960137800288717 +prudery modesty 4.531759736804425 +interlingua language 1.8364243527528297 +tricolours flag 3.693970615267486 +trilateral reciprocal 0.30037343387475895 +delimitations property 1.7653230181588535 +management administration 3.513062714019842 +management finance 3.093408506467253 +microfiche microfilm 4.682632368423683 +subgroup group 4.486909063278792 +subgroup bench 4.620591231911495 +microbiologist virologist 4.682632368423683 +protrusion mogul 4.028842009561337 +protrusion shape 1.7886075648544606 +bewitchment sorcery 4.284692359751645 +locality scenery 4.027291159496007 +reburial burying 4.682632368423683 +carbonate process 0.3323115901151653 +carbonate change 0.7471774585552214 +disturbances agitation 4.121227086532431 +mccarthyism witch-hunt 4.682632368423683 +fetishism belief 2.2081292293612886 +rascality naughtiness 4.678575624678838 +chairmanship position 2.8593330533406336 +starkness limit 4.202158327500404 +bellowing shout 3.807571105031983 +destroyers annihilator 4.203936974452763 +destroyers warship 3.460512943333331 +seeders person 0.6886976949598803 +prospector sourdough 4.681823190204529 +leadership helm 4.378709622615231 +leadership high 1.170205854871321 +interconnectedness connection 4.014790264649947 +autograft graft 4.381142173609593 +diffidence unassertiveness 4.506541109368001 +sensualist epicure 3.8697190117808273 +concordance agreement 3.8053901467526865 +concordance order 3.2607239184148087 +careerism practice 2.8666566705341787 +internationality scope 3.9416877860001738 +advisory announcement 3.8395250618373895 +assistance facilitation 3.2397195959848775 +excitation arousal 3.791812523930251 +labourer hire 2.670062396103733 +rectorate position 2.8593330533406336 +procurators bureaucrat 4.02145074632344 +procurators agent 3.156387928905689 +assistances resource 4.197972118140915 +assistances recourse 4.108070115024712 +implantations placement 3.8610493029255464 +implantations procedure 2.3138116837624003 +advancement seafaring 2.268922409917593 +advancement encouragement 3.963779446117878 +codefendants corespondent 4.506541109368001 +highlanders soldier 3.248261607136147 +highlanders scot 4.282956766616314 +monopolist person 0.911958804912311 +comportment manner 3.4614007494154655 +roofers thatcher 4.677758296628861 +adjustor investigator 3.791897792407506 +hinduism religion 3.058061822867571 +pathfinder usher 1.0815506406396596 +refinery plant 3.4150357928627457 +censorship military 0.36407864118688726 +censorship deletion 4.111610307837842 +tricolor flag 3.693970615267486 +tricolor colored 0.49026008482517114 +immobilization restraint 3.5966227260192976 +immobilization preservation 3.9731952900872227 +subsequences result 3.6966511867391345 +circumcisions rite 3.7927475603285927 +circumcisions day 2.429289592138842 +bibliographies list 3.0188414835722757 +rejoinders reply 3.798721283078868 +rejoinders pleading 3.377870744693015 +lavishness expensiveness 4.505857338353433 +incoordination unskillfulness 4.138564324073407 +protestantism fundamentalism 3.621934528070071 +performances play 2.1923211143673393 +monoculture culture 4.281452621151683 +monogenesis reproduction 3.5304352646831862 +bronchus tube 2.0291484927213537 +contraries opposition 3.517611048188793 +travelers foreigner 2.75066625369551 +trusteeship position 2.848495609229177 +trusteeship district 2.876128640744838 +suspiciousness distrust 4.6796431602141375 +lightship ship 3.0860352727972225 +eroticism arousal 3.6670580132390156 +eroticism desire 3.564359217413905 +caesarism autocracy 4.02619541158314 +sessions quarter 4.2068707824479175 +sessions sitting 4.309117830830958 +managership position 2.8593330533406336 +excitements fever 1.9707004919572455 +excitements intoxication 4.360973325693801 +cooperators spouse 1.0815506406396596 +differences differentia 3.569465912766447 +differences variation 3.870033953210101 +liverpools england 3.21281035244552 +contrabands merchandise 3.704908763134835 +scrutiny look 3.5912118019974 +receiverships proceeding 3.308226377221746 +rematches repeat 4.0294198546483395 +scholarship letters 4.664337789050406 +scholarship prize 4.071457042933084 +transmitter communicator 2.4134089134918866 +transmitter carrier 4.191202751887445 +autobuses school 0.4850708514353341 +predators attacker 3.6587133824983487 +predators carnivore 4.672220029184263 +enlarger equipment 2.2970260948253705 +equivalence tie 4.323348558059003 +animality nature 2.8684873481417075 +protesters picket 4.4926432918676955 +protesters nonconformist 3.974252959427061 +rooters enthusiast 3.935939149020803 +postcodes code 3.913053180663897 +autosuggestion self-improvement 4.506541109368001 +foresters farmer 3.6204775863760186 +winking flicker 0.11436189327583708 +trichloride chloride 3.8517909459688635 +preconception opinion 3.8800387629383812 +preconception homophobia 3.979441984067928 +fringes surround 2.1274135212079557 +kingship rank 3.1921162281314537 +excretion matter 0.5719960278675507 +excretion defecation 3.7266261654990696 +inheritor heiress 4.284692359751645 +conspicuousness boldness 4.124136624618911 +preconceptions opinion 3.8800387629383812 +glistens brightness 3.8232409604137763 +spellers writer 4.203313829529161 +spellers primer 4.500492732725277 +orchestrations musical 0.9386619428224138 +orchestrations arrangement 4.252427146687097 +embroiderer needleworker 3.7795423814317393 +arousal desire 3.6448681840737542 +arousal inflammation 3.799293338194968 +enforcements imposition 3.6171365545844925 +connectedness bridge 3.6444299806461125 +antipsychotics clozapine 3.8697190117808273 +convocation gathering 3.3962011076799334 +convocation assembly 3.3883304033101735 +intensions meaning 3.6393962992977524 +alarmism warning 3.7817185574991887 +foreigner transalpine 4.604365084458149 +foreigner gringo 4.07467561822924 +anaesthetics drug 1.9490339074623435 +utterance communication 1.1110637341582383 +ukrainians slavic 3.8697190117808273 +hypocrisy pretense 4.135868640894019 +refurbishment improvement 4.133763403172036 +crispness freshness 4.642731904132934 +philanthropy aid 3.5082160388381936 +washers worker 1.6455724351663132 +washers seal 3.796379776056399 +defeatist pessimist 4.682632368423683 +nakedness gloom 4.478754053617454 +nakedness undress 4.280145946774431 +designs plot 2.7677573532479736 +accordance giving 3.883721511252359 +accordance agreement 3.672706271010918 +skateboarders skater 4.20551111370402 +amusements delight 4.379629025845034 +syllable word 2.3797243831342025 +governance sociable 1.657651426427044 +governance government 4.114626366635654 +kazakhstani asian 2.859810723120578 +microseconds nanosecond 3.3925977570611647 +discernment knowing 3.474634336015176 +discernment discrimination 3.455871788281373 +employable worker 1.8199361057606014 +mildness balminess 4.681648839137708 +mildness manner 3.425890437855574 +exporters businessperson 2.822294361852689 +enrollment body 2.8495645867690347 +enrollment entrance 3.8973034780232405 +scholarships aid 3.4833982561659185 +scholarships education 3.8411543754705475 +stressor agent 2.7590926134065072 +correspondence conformity 4.28091637033554 +princedoms domain 3.806341112994751 +princedoms rank 3.1893906177256204 +extrapolations calculation 3.501252044439268 +extrapolations inference 4.126388368123388 +nobelist laureate 4.506541109368001 +cowboys performer 2.726970935570382 +cowboys ranch 0.46537220931671974 +predominance obviousness 4.380232910643015 +predominance dominance 3.7921027656824013 +brandish expose 0.36407864118688726 +brandish hold 0.27183463015053855 +regionalisms policy 3.2786340504478875 +regionalisms address 1.1781267508636253 +microcomputers computer 3.460512943333331 +adhesion scar 0.8170169845442108 +dependence addiction 4.118367406339872 +dependence helplessness 4.275880910913519 +disinvestment withdrawal 3.8891843501981342 +containership ship 3.0860352727972225 +naivety artlessness 4.27056502774579 +secularist advocate 2.9222660081258964 +demerit mark 4.19508362311524 +remarriage marriage 4.283527640323989 +clericalism policy 3.3282683296529845 +irresolution doubt 4.07312575838287 +irresolution volatility 4.488589644423614 +footballers player 2.831476029494506 +containers cargo 0.9040831971175332 +commutation travel 2.644909631640318 +transponder device 1.2459568195786166 +cooperator spouse 1.0815506406396596 +suppleness gracefulness 4.373603433146541 +suppleness bendability 4.664801620227443 +purgatory situation 3.538206430653269 +technology science 1.8979624384198983 +greenness profusion 4.373603433146541 +greenness ripeness 1.25621490973883 +formalisms imitation 2.751873417079756 +pathfinders hunt 0.9578284031151386 +disturbance storm 3.9920047442632827 +disturbance agitation 4.121227086532431 +eldership position 2.8593330533406336 +homophony pronunciation 3.605942336113526 +homophony music 2.2596017394498937 +partnerships relationship 4.049278817429533 +partnerships copartnership 4.680494562198813 +removes out 0.36407864118688726 +nurturance care 2.718326599962467 +microvolts potential 0.2556420772721466 +exterminator killer 3.559045851536582 +talkativeness communicativeness 4.138564324073407 +difference distinction 3.471358432364921 +difference inflection 4.3692181692287075 +gumption fortitude 4.681563200677113 +abstractionist painter 3.659045997285434 +developments advancement 4.041660299210262 +syphons draw 0.22877046037955673 +syphons tube 3.0539105922695606 +cuteness beauty 3.6385281644828615 +cofactors compound 1.7635639474008802 +shoulders thrust 0.0744914266125713 +shoulders raise 0.15172951455715805 +consonant letter 3.059435278352888 +clients case 3.772478281812663 +clients guest 4.373778614230864 +remakes creation 2.0517374675449256 +florescence growth 3.379534570515227 +autopilots guidance 0.25564207727214655 +autopilots unconsciousness 3.6812403174575383 +separationist separatist 4.682632368423683 +falsifier deceiver 3.3708785073679284 +manacles shackle 4.282996426270525 +microcircuits chip 1.1586065030036077 +cofounders founder 4.379137708266528 +specialism career 4.281901651392353 +specialism concentration 4.249369534051902 +copilots pilot 3.7995829813004507 +trioxide oxide 3.452183447045409 +bachelors man 2.9745090008667523 +macroeconomist economist 4.20551111370402 +placidity calmness 4.268312368474991 +placidity composure 4.376131381419883 +friendship brotherhood 1.103684071168872 +householders warrior 1.0815506406396596 +positioners actuator 4.682632368423683 +inadvertence omission 4.377305303439383 +reassessments appraisal 3.5234124947500614 +broadcasters disk 2.2419265019353176 +inclosure document 2.2413995181539437 +inclosure insertion 3.8336413335645774 +interlayers layer 3.8335146796466804 +spiritualist psychic 4.381602372759701 +microphallus penis 4.506541109368001 +interceptor fighter 4.380365680374065 +surroundings touch 0.7525630180191756 +surroundings cover 0.3116964752729283 +reviewers critic 3.7127201196607436 +reviewers writer 3.1335261365276517 +gladness happiness 3.5272156811493973 +autoregulation organic 0.24606425104057852 +explorers person 0.7655989006767373 +circumstances possession 1.3163779197873955 +circumstances providence 3.153686690737921 +expounding premise 2.3719390560803224 +possessor holder 3.2696331138044115 +muscularity strength 3.498669514969429 +muscularity condition 1.3283302948928066 +appearances manifestation 3.934993119916084 +sniffers person 0.911958804912311 +exaction demand 4.264775117992642 +sailings travel 2.7504729947204445 +objector dissenter 3.983662364087664 +earmuffs covering 1.8651358035298593 +infolding organic 0.24606425104057852 +receptions tea 4.278277102033637 +receptions greeting 3.778075808547429 +corpulence fleshiness 4.20551111370402 +refurbishments improvement 4.133763403172036 +censorships deletion 4.111610307837842 +censorships censoring 4.383987752283049 +depressor nerve 3.413128910250499 +depressor muscle 2.712744694318434 +grocery greengrocery 4.472702740915464 +fruiterer seller 3.75321344270939 +malevolence vindictiveness 4.380232910643015 +malevolence evil 3.7056823814076254 +reclassifications categorization 4.137776457576044 +embracement cuddle 4.506541109368001 +abductor muscle 2.8157981866937862 +cliffhanger episode 4.609847484105764 +cliffhanger contest 2.8026275023911547 +solemnity seriousness 4.554697764383257 +moralist stickler 4.677758296628861 +insecurities insecureness 4.6762842344535915 +insecurities anxiety 3.8930561558966414 +discovery rediscovery 3.544777778904314 +discovery disclosure 3.8049755782909975 +submerging cover 0.7758927472987395 +literalness concreteness 4.682632368423683 +acknowledgement admission 3.3405120693920476 +acknowledgement acceptance 4.013853433782428 +rompers garment 2.535112607197946 +rompers person 0.7674987592931102 +enfolding change 1.4358743012797548 +antifeminist chauvinist 4.076513194782545 +omniscience wisdom 0.8761570229675654 +ascendence predominance 3.8323208157292488 +aerialist ropewalker 4.682632368423683 +relocation transportation 3.5902656218415485 +relocation change 1.4358743012797548 +hypermarkets supermarket 4.682632368423683 +discoverys disclosure 3.8049755782909975 +discoverys self-discovery 3.544777778904314 +palestinians arab 4.028971377835274 +nondescripts person 0.911958804912311 +foreigners gringo 4.07467561822924 +schnauzer giant 0.9302201255069571 +stimuli stimulation 3.456733656079823 +microbalance balance 4.119638997510685 +postmarks marker 3.6018746882668538 +postmarks stamp 2.440423301090344 +stockers animal 1.3444748041519101 +authorship initiation 4.664215909540784 +replacements stand-in 4.296694662080992 +replacements supplanting 4.28238543433601 +bengali ethnic 0.9364047026092104 +transsexual person 0.911958804912311 +sponsorship support 3.4210845883569956 +ejector person 0.7674987592931102 +ejector mechanism 2.3388475877678445 +rareness scarcity 4.506541109368001 +lordship authority 4.077928769253649 +lordship title 3.9155509889181643 +grinder sandwich 3.726485147194598 +congeniality friendliness 3.8654569605745634 +congeniality compatibility 4.003563243268478 +piquancy spiciness 4.37749741640432 +piquancy quality 1.7029305281340903 +immobilizing beat 0.9387488246530185 +employments state 0.7290208855784894 +employments populace 0.36407864118688726 +religiousness piety 4.223425583080647 +religiousness conscientiousness 4.6282844790944 +concerts plan 0.7939443581791267 +postholes hole 3.458543747277983 +besieging attack 1.0501092692683986 +besieging distress 0.8814342584058545 +attendance frequency 3.5820076136402585 +attendance presence 4.373002612615121 +computer expert 2.7118625376118395 +computer server 3.4012420710706763 +irrelevance inapplicability 4.506541109368001 +prisoners internee 4.0294198546483395 +syntaxes system 2.952478689862541 +syntaxes structure 3.0665628403774594 +enhancement improvement 2.9401961433258923 +londoners person 0.911958804912311 +predetermination decision 4.593331473336763 +destabilization change 2.4244411598147675 +pottery lusterware 4.380787303418392 +pottery trade 3.2380313102174827 +virility masculinity 4.396816484042376 +virility maleness 4.6796431602141375 +discordance dissonance 4.377764608909379 +discordance strife 4.503279896987812 +transvestite person 0.911958804912311 +transvestite homosexual 1.0815506406396596 +retraction motion 2.6126701173410494 +retraction withdrawal 4.5783885157160675 +explorer diver 4.0149189906553024 +concurrencies agreement 3.672706271010918 +concurrencies cooperation 3.5038044997222966 +internationalisms scope 3.941215214341616 +internationalisms doctrine 2.76883699474615 +afghani iranian 3.86868479053752 +animalism doctrine 2.76883699474615 +animalism disposition 2.815187181517161 +latinist classicist 4.677758296628861 +punjabi sanskrit 3.8370161294223752 +punjabi indian 3.5305050253822836 +unicycle wheel 2.408565996853854 +unicycle bicycle 2.6144465066775213 +perfective future 3.796412860551221 +perfective aspect 4.128974679726913 +apprenticeship position 2.8593330533406336 +reporters reporter 4.381602372759701 +houseful containerful 3.21281035244552 +irreverence evil 4.197972118140915 +snooper eavesdropper 4.506541109368001 +researchers fieldworker 4.284692359751645 +coinsurance insurance 3.6589564171652036 +micrometer nanometer 3.83747674383229 +micrometer caliper 4.20536386862488 +postcode address 2.757676097240314 +fastness fast 0.30037343387475895 +remainder sell 0.31897798459332355 +remainder part 2.063064864003048 +marginality position 2.6052634671771058 +sidewinder rattlesnake 3.8690580000775143 +sidewinder missile 3.5984867504006193 +characters being 0.8480003690951343 +characters scratch 0.8399377767229969 +conjecture hypothesis 4.447318267377076 +allurement temptation 4.329764714236125 +allurement invitation 4.673743164326032 +extractor forceps 4.357577707874909 +photographer paparazzo 4.381602372759701 +perspectives eye 1.1155426768060601 +perspectives point 1.1065799819711346 +trilogies trio 4.470074391942763 +poisoning poison 0.7828854889894433 +bobbers float 3.8460206061971918 +portrayer painter 3.659045997285434 +invariable parameter 3.9694390442018395 +extraversion sociability 4.0294198546483395 +confinement restraint 3.7375391384255807 +consciousness knowing 3.5494355068820918 +consciousness self 3.9781241179123428 +believing feel 2.1126084822973947 +inheritance transfer 0.6759716398031661 +inheritance acquisition 3.413053572949653 +archery sport 2.588010158846218 +belligerence hostility 3.7104697090509053 +harmony congruity 4.674527653373043 +harmony music 2.0020519776091077 +insurrectionist young 3.5005276901142657 +extraterrestrial hypothetical 1.380409702106017 +murderer killer 3.559045851536582 +concurrency agreement 3.672706271010918 +concurrency cooperation 3.5038044997222966 +quick rapid 1.6005654341385698 +narrow broad 0.24606425104057852 +weird normal 1.380409702106017 +essential necessary 4.381602372759701 +modern ancient 1.0037576989929244 +wife husband 3.4038787674708537 +book text 2.7728557713241564 +groom bride 4.097186183320838 +night day 2.7521015478427207 +south north 3.716805022408731 +plane airport 0.8249087495748366 +uncle aunt 2.6891307336072305 +horse mare 3.003906542208133 +bottom top 4.2220140635436465 +friend buddy 3.6285662744491747 +student pupil 3.440343778252123 +leg arm 3.4543292665931413 +plane jet 3.4032558003280817 +woman man 1.755685287905466 +horse colt 1.0289022273349158 +actress actor 3.498678656508585 +teacher instructor 3.535549362509968 +movie film 3.5892619100878753 +money salary 1.9949185235141813 +dog cat 2.5578320203297142 +area region 3.433668903288456 +navy army 3.0162033922973084 +book literature 1.9592106426494456 +clothes closet 0.9040831971175332 +sunset sunrise 3.4635823586859456 +child adult 0.9734095820338418 +cow cattle 3.484795770052203 +book story 1.9461385774956212 +winter summer 3.9431679983520787 +taxi cab 4.4537412117150135 +tree maple 1.8873530718588702 +roof ceiling 4.668774385842409 +disease infection 1.610438248744017 +arm shoulder 2.9547289770473495 +sheep lamb 1.0010988977418036 +lady gentleman 2.2057171152038664 +boat anchor 1.0020855010769079 +priest monk 1.0815506406396596 +toe finger 3.7571463020094154 +anger fury 3.632646655686724 +date calendar 0.7784825744599165 +sea ocean 4.652813758592505 +second minute 3.9275975322621264 +hand thumb 3.3397429215876477 +wood log 2.7430258019047797 +mud dirt 3.2580843100445582 +hallway corridor 4.381602372759701 +way manner 3.421371518993083 +mouse cat 1.4145222466023553 +cop sheriff 3.3115645061519468 +death burial 0.7887857523057494 +music melody 2.857647592611808 +beer alcohol 2.521373868855364 +mouth lip 4.7813671139465015 +storm hurricane 3.6588077014800007 +tax income 2.0816594727369346 +paper cardboard 2.782375838682954 +floor ceiling 3.8987866137129448 +beach seashore 2.7381496962735143 +rod curtain 0.8323739913922992 +hound fox 2.323301809285208 +street alley 3.795827955286757 +boat deck 1.8391209894526461 +car horn 0.9593729328464502 +friend guest 1.0386722056322708 +employer employee 1.0815506406396596 +hand wrist 1.5310304175132368 +ball cannon 2.158031010251615 +alcohol brandy 2.521373868855364 +victory triumph 3.777851630290064 +telephone booth 0.9901066849980887 +door doorway 4.195318327837395 +motel inn 3.7795423814317393 +clothes cloth 0.9040831971175332 +steak meat 2.666009233017673 +nail thumb 1.4166182713432731 +band orchestra 3.251561771278686 +book bible 4.216447660974589 +business industry 2.662414442769301 +winter season 3.904434950236561 +decade century 3.2234463781082523 +alcohol gin 2.486994582539394 +hat coat 2.099838964272516 +window door 1.2986541322687666 +arm wrist 1.5384151784250228 +house apartment 2.6846277530808274 +glass crystal 4.178751806549823 +wine brandy 2.59065884296244 +dinner breakfast 3.4629438741043224 +arm muscle 1.3041483954801225 +bubble suds 3.9332613639703307 +bread flour 2.2185998610619055 +death tragedy 1.4327590581772456 +absence presence 1.4040678870792713 +gun cannon 3.6926838531230257 +grass blade 0.6623279818486785 +ball basket 2.8559676591292456 +hose garden 0.3958042205052337 +boy kid 3.2771259048768084 +church choir 1.4528882387939155 +clothes drawer 0.7113844676529714 +tower bell 1.5692552418483254 +father parent 3.566217373959315 +school grade 1.5879673363013902 +parent adult 0.8816006641008028 +bar jail 1.5673543816403213 +car highway 0.9040831971175332 +door cellar 2.1391641171183213 +army legion 3.8674139767652846 +metal aluminum 2.845265968702151 +chair bench 3.0030162569200614 +cloud fog 3.4238427680095387 +boy son 4.15074664166346 +water ice 1.1234099920047163 +bed blanket 3.7977623513461234 +attorney lawyer 3.704908763134835 +area zone 1.9315136576803724 +business company 1.427708584873026 +clothes fabric 0.7903036093293658 +sweater jacket 2.3306758999046773 +money capital 1.7740945455400412 +hand foot 3.2560695568029425 +alcohol cocktail 2.435905554367302 +yard inch 3.0539246808663303 +molecule atom 3.8399707273286907 +lens camera 2.802050358910253 +meal dinner 3.3802220956316447 +god devil 2.784006363889321 +loop belt 3.435012382963888 +rat mouse 2.543993357238567 +motor engine 3.16607444524431 +car cab 3.2929203339697235 +cat lion 3.346579531061569 +size magnitude 2.5027595125007047 +reality fantasy 1.2468686814918413 +door gate 3.2016956576158857 +cat pet 3.683180063303517 +tin aluminum 2.866848635447665 +bone jaw 2.8471186830530772 +cereal wheat 3.4225617769659924 +house key 0.6824028681513948 +blood flesh 0.212588484177928 +door corridor 2.429217764072655 +god spirit 2.7174548425480043 +capability competence 3.3803077795641205 +abundance plenty 3.863719199617598 +sofa chair 3.1031128535068504 +wall brick 0.6614360957614099 +horn drum 2.1837314805180372 +organ liver 2.1615815145150896 +strength might 3.589284646595935 +phrase word 2.2075115824250573 +band parade 1.4276315172424414 +stomach waist 1.6238274999717646 +cloud storm 2.422029277603929 +joy pride 2.1357389979855044 +noise rattle 3.200371594715979 +rain mist 2.210572054982121 +beer beverage 2.442083120141083 +man uncle 1.0111383140167953 +apple juice 0.8274962416828007 +intelligence logic 2.1010025135120283 +communication language 1.0092944639061716 +mink fur 3.626745268696689 +mob crowd 3.7086420110277127 +shore coast 4.034553512385245 +wire cord 3.1299797681372383 +bird turkey 3.5378950864836303 +bed crib 2.3146570841479055 +competence ability 3.397197826483649 +cloud haze 3.576516008634854 +supper meal 3.3802220956316447 +bar cage 1.6145089006110507 +water salt 1.455088251450212 +sense intuition 1.8754427669196152 +situation condition 1.3283385468605706 +crime theft 2.9394754526486135 +style fashion 3.8750443024095538 +boundary border 3.7697778064503877 +arm body 1.244060323673802 +boat car 2.0734821920027997 +sandwich lunch 2.227026255841816 +bride princess 1.0815506406396596 +heroine hero 4.006146627677271 +car gauge 0.7486213462277679 +insect bee 2.207916166861341 +crib cradle 4.2641516995668205 +animal person 0.5847796377279957 +marijuana herb 1.3676095809442637 +bed hospital 1.299179332073244 +cheek tongue 1.3248208370434194 +disc computer 1.3857949022520306 +curve angle 2.050886339126801 +grass moss 0.6532710276995253 +school law 1.2448118739463239 +foot head 2.8450741708401783 +mother guardian 1.020445893648414 +orthodontist dentist 4.08057237709572 +alcohol whiskey 2.521373868855364 +mouth tooth 1.7800862208138934 +breakfast bacon 0.8814684690625636 +plate bowl 3.1815283099734626 +meat bacon 2.603062879629324 +air helium 2.935572944887127 +worker employer 1.0360650273330354 +body chest 1.1735134123975681 +heart surgery 1.0769995821081013 +woman secretary 1.533574312698252 +man father 0.9959730854804025 +beach island 0.46537220931671974 +story topic 1.767114926171882 +game fun 1.8113832178725326 +weekend week 2.162148835682891 +couple pair 4.484642821053484 +woman wife 2.8408852026671036 +sheep cattle 2.839444587200526 +purse bag 4.085403787862283 +ceiling cathedral 0.63138340438345 +bean coffee 3.067839897568655 +wood paper 0.8928161833279761 +top side 2.8101753795343143 +crime fraud 2.8314226427400433 +pain harm 0.8840209494233149 +lover companion 1.0815506406396596 +evening dusk 0.36407864118688726 +father daughter 2.5980683927136385 +wine liquor 2.440795033936361 +cow goat 2.6474803323454053 +belief opinion 3.6533089285529066 +reality illusion 1.3082286149499334 +pact agreement 3.1161818758377526 +wealth poverty 3.619622249320697 +accident emergency 1.8993384784209122 +battle conquest 1.1422403196853046 +friend teacher 1.0037576989929244 +illness infection 1.610438248744017 +game trick 1.8228903626850375 +brother son 2.4901453438850534 +aunt nephew 2.75321344270939 +worker mechanic 1.8199361057606014 +doctor orthodontist 3.142424817112467 +oak maple 2.7634042249713797 +bee queen 1.7264768609199495 +car bicycle 2.570657028533867 +goal quest 1.0763242760460991 +august month 3.1335536523915772 +army squad 2.1162837783927277 +cloud weather 2.6029360294497 +physician doctor 3.244404252882649 +sun sky 0.21509987180148582 +target arrow 2.2336644561002914 +chocolate pie 1.7226102552897542 +circumstance situation 2.8850063401649653 +opinion choice 1.198459268093352 +rhythm melody 1.0285100496705222 +gut nerve 1.5531332644753386 +day dawn 2.081849351084449 +cattle beef 3.504936691970458 +doctor professor 2.6910187328305093 +arm vein 1.280412434276229 +room bath 2.472609833966186 +corporation business 2.804061483561867 +fun football 2.113013231465456 +hill cliff 2.6576348386084194 +bone ankle 1.6509728541649809 +apple candy 0.962635882068194 +helper maid 1.8008568521952582 +leader manager 2.3199016130055035 +lemon tea 1.2835020905070313 +bee ant 3.2568562222548563 +basketball baseball 3.3953919602140643 +rice bean 1.6195345090168773 +emotion passion 2.1581551251721374 +anarchy chaos 3.521997017236756 +crime violation 2.8265654340059077 +machine engine 2.520540655399378 +alley bowl 0.8433732027391243 +jar bottle 3.2048590198423557 +strength capability 3.8376583474981243 +seed mustard 0.7005695207814924 +guitar drum 2.5931099632385095 +opinion idea 3.7238656313766767 +north west 3.7138127042650915 +diet salad 1.7616490049196114 +mother wife 2.8476416344462363 +dad mother 3.6297402853287224 +captain sailor 3.274901791141558 +meter yard 3.070702834866827 +beer champagne 2.5931142476535403 +motor boat 1.0856506036487104 +card bridge 3.012030727482141 +science psychology 2.2095936017551465 +sinner saint 1.0412031273840927 +destruction construction 0.8342225983178077 +crowd bunch 4.635559196936271 +beach reef 2.6971663341754133 +man child 1.0111383140167953 +bread cheese 2.195582134523896 +champion winner 2.0111240768655043 +celebration ceremony 3.1990985618844108 +menu order 1.2408460312356444 +king princess 1.9983404205798538 +wealth prestige 1.1598393876403053 +endurance strength 3.540652725200465 +danger threat 3.939350376394153 +god priest 2.28798664476571 +men fraternity 1.2091789937330593 +buddy companion 3.6448992590844154 +teacher helper 1.0037576989929244 +body stomach 1.209078620854077 +tongue throat 1.2719535005595561 +house carpet 0.5026108654384939 +intelligence skill 2.2253762961166754 +journey conquest 1.6971217528155103 +god prey 0.7365626941115685 +brother soul 0.932871170106987 +adversary opponent 4.199875939897939 +death catastrophe 1.7068422514465533 +monster demon 4.648971114609702 +man victor 1.0111383140167953 +song story 1.0825477984187615 +ray sunshine 3.23314806624038 +guy stud 3.0669363186539242 +box elevator 0.9558606739324811 +butter potato 2.1656094137682067 +apartment furniture 0.9040831971175332 +lake swamp 0.2744741280975281 +salad vinegar 1.68528140045172 +flower bulb 1.9057101470049056 +driver pilot 1.8483814485228267 +sugar honey 3.571086814137401 +body shoulder 1.098099762317515 +idea image 1.3907280396258248 +father brother 2.0802590306325355 +moon planet 3.37699562234492 +ball costume 0.6352437131669826 +rail fence 3.041926509318071 +room bed 1.1118298835422806 +flower bush 1.3516290655490988 +bone knee 1.5983537504330998 +arm knee 2.995585642318734 +bottom side 2.910814387067511 +vessel vein 2.3556238750627707 +cat rabbit 1.5031245502250221 +meat sandwich 0.896680314228867 +belief concept 2.0902527372895365 +intelligence insight 0.9903939744524589 +attention interest 0.7405347477892528 +attitude confidence 0.7025853156723301 +right justice 4.2224644485632785 +argument agreement 2.1502366681804053 +depth magnitude 2.3375569187241467 +medium news 0.47229890138656794 +winner candidate 1.0815506406396596 +birthday date 4.192793472653148 +fee payment 2.439189962737418 +bible hymn 1.237541714684728 +exit doorway 0.7019612313286547 +man sentry 1.0111383140167953 +aisle hall 2.9941490863248084 +whiskey gin 3.365005915965756 +blood marrow 0.5797820602153967 +oil mink 1.6358409865132515 +floor deck 2.7875570969942256 +roof floor 4.022120529718541 +shoulder head 2.2954714698375387 +wagon carriage 2.5910521601617145 +car carriage 3.345554840372348 +elbow ankle 3.6935900769660304 +wealth fame 1.1598393876403053 +sorrow shame 2.11318710002456 +administration management 3.513062714019842 +communication conversation 1.1110637341582383 +pollution atmosphere 1.2063566198899478 +anatomy biology 2.984644940091154 +college profession 2.948197291603215 +book topic 1.3745703223885066 +formula equation 3.6249892727826833 +book information 2.182621842980828 +boy partner 2.2436451651563805 +sky universe 0.11436189327583708 +population people 1.9538239982720649 +college class 1.346465162603527 +chief mayor 2.3461726345751535 +rabbi minister 2.88224516289697 +meter inch 3.094462980648152 +polyester cotton 2.425505944566481 +lawyer banker 1.0815506406396596 +violin instrument 2.565418727263981 +camp cabin 2.64536395032144 +pot appliance 1.041891250026163 +linen fabric 2.5035078344318853 +whiskey champagne 2.5931142476535403 +girl child 3.1562030041484626 +cottage cabin 3.108193575449031 +bird hen 3.5051114191899315 +racket noise 4.005841968683188 +sunset evening 0.30037343387475895 +drizzle rain 4.027194294816654 +adult baby 1.9771628271458033 +charcoal coal 3.274247029813318 +body spine 1.2530056179577258 +head nail 3.0128501475037197 +log timber 0.9901720230667312 +spoon cup 3.20727823139168 +body nerve 1.0932834671568807 +man husband 3.190712240145269 +bone neck 1.302578877425881 +frustration anger 3.6286552359096405 +river sea 3.09482356801651 +task job 4.286242835827559 +club society 3.5714892254494446 +reflection image 3.3655773250492516 +prince king 1.9983404205798538 +people party 1.1792411696658476 +boy brother 2.032767515227912 +root grass 0.5735441940522336 +brow eye 1.6029764602509053 +money pearl 0.30037343387475895 +money diamond 0.7949882072839003 +vehicle bus 1.9387076599697761 +cab bus 3.137350405371812 +house barn 2.4725668901615787 +finger palm 3.09637690962301 +car bridge 1.2977136860807517 +effort difficulty 2.8893475960161803 +fact insight 1.2426987167607018 +job management 2.2314012383897808 +cancer sickness 1.7435459777641358 +word newspaper 0.5398490047499522 +composer writer 1.0815506406396596 +actor singer 2.657440520138792 +shelter hut 3.3610814929779935 +cabin hut 1.8128141604443546 +value belief 2.00145600152354 +wisdom intelligence 1.7621077562025698 +ignorance intelligence 1.0680126533921213 +happiness luck 1.2520399089840548 +idea scheme 1.8054784985561034 +mood emotion 2.1521381682220215 +happiness peace 1.9807898528911325 +despair misery 2.004387158556449 +logic arithmetic 1.806939589432672 +denial confession 3.0075695979404404 +argument criticism 1.6897492554275548 +aggression hostility 3.9343445097196144 +hysteria confusion 1.7180171988267048 +chemistry theory 1.4751009775360318 +trial verdict 2.979869656058866 +comfort safety 1.0806785945580553 +confidence self 2.779253918700033 +vision perception 2.3204330688587387 +era decade 1.9468908873797044 +biography fiction 1.306055411367171 +discussion argument 3.1658354580798758 +code symbol 1.1973036187325161 +danger disease 1.4010588341425594 +accident catastrophe 3.2575484722931387 +journey trip 3.1883221551381893 +activity movement 1.8964542807226055 +gossip news 1.0348866697479173 +action course 0.8366308372993095 +fever illness 1.271843611081446 +aviation flight 3.418667136165569 +game action 0.9303668522563167 +molecule air 0.8459089193445569 +home state 1.913484120071645 +word literature 1.5821850907763442 +adult guardian 0.9734095820338418 +newspaper information 0.8233079747979427 +cousin uncle 2.6891307336072305 +author reader 1.0623797635891568 +guy partner 0.8927397400422421 +area corner 2.767510782161197 +ballad song 3.188377620969606 +wall decoration 0.5498013997571823 +word page 0.41164706783857424 +nurse scientist 1.0815506406396596 +politician president 2.2349619095393707 +president mayor 2.293102830007566 +book essay 1.9592106426494456 +man warrior 1.0111383140167953 +article journal 1.9067298270465454 +breakfast supper 3.4629438741043224 +crowd parade 1.0562393410135245 +aisle hallway 3.4004531702063705 +teacher rabbi 0.8582333602979785 +hip lip 1.8844414692376579 +book article 2.836485629680841 +room cell 2.5135088088102058 +box booth 2.462987983983579 +daughter kid 3.447056898983383 +limb leg 3.5887523768479217 +liver lung 3.4296385591323606 +classroom hallway 0.9040831971175332 +mountain ledge 3.3561155721204785 +car elevator 1.0671969688973746 +bed couch 3.5476865054837656 +clothes button 0.8057346107806072 +clothes coat 2.121733344595227 +kidney organ 2.4422672055081684 +apple sauce 0.962635882068194 +chicken steak 2.6559471532689654 +car hose 0.9040831971175332 +tobacco cigarette 3.6803769943179576 +student professor 1.0815506406396596 +baby daughter 3.2230579785080486 +pipe cigar 0.275967051021335 +milk juice 2.4842273047768324 +box cigar 0.30212876027585445 +apartment hotel 1.8128141604443546 +cup cone 1.906797382115871 +horse ox 2.4328266282642272 +throat nose 2.801364582146864 +bone teeth 2.819555156609263 +bone elbow 1.5037295942293198 +bacon bean 1.555856954316208 +cup jar 3.2078332425193676 +proof fact 1.7642898230777226 +appointment engagement 4.285799386865932 +birthday year 2.0676709916242797 +word clue 2.488854923633495 +author creator 2.686168423020393 +atom carbon 1.3985702067247796 +archbishop bishop 3.897909525837963 +letter paragraph 1.8513951809925 +page paragraph 0.11665945809838446 +steeple chapel 1.7802889841498553 +muscle bone 2.159920948236298 +muscle tongue 1.9928787111410236 +boy soldier 0.9734095820338418 +belly abdomen 4.593996795989711 +guy girl 2.2117073313698903 +bed chair 2.219626898199014 +gun knife 2.2238066645145538 +tin metal 2.8203021854314665 +bottle container 2.1011614785110564 +hen turkey 3.64670912294795 +meat bread 1.7944185826949408 +arm bone 1.2453356465256633 +neck spine 2.1576952702063195 +apple lemon 2.732200070784709 +agony grief 2.200419173463776 +assignment task 3.3606104814633397 +night dawn 3.2612808576796364 +dinner soup 2.0968556762910957 +calf bull 0.8136327973478923 +snow storm 2.6454736804565986 +nail hand 3.07210158881504 +dog horse 1.1682153925075913 +arm neck 2.576713985899843 +ball glove 1.8723721156316149 +flu fever 1.271843611081446 +fee salary 2.4850817116008654 +nerve brain 1.3158863349806358 +beast animal 1.1813455565351643 +dinner chicken 0.6626689377369874 +girl maid 3.2711551306642552 +child boy 3.202236168279242 +alcohol wine 2.507787460857052 +nose mouth 2.677387570601852 +street car 0.74351747707692 +bell door 0.706092587680006 +box hat 0.720607051594711 +belief impression 3.8279569107440143 +bias opinion 1.1139784323426598 +attention awareness 1.7222565044948885 +anger mood 1.889910157263777 +elegance style 3.8723872021179186 +beauty age 0.48304059905327734 +book theme 1.8996206689088926 +friend mother 2.322872712248357 +vitamin iron 0.8168181088031997 +car factory 1.7419325699756747 +pact condition 2.2859177593879596 +chapter choice 0.5859315479303517 +arithmetic rhythm 1.4322886951311566 +winner presence 0.16875764209363728 +belief flower 0.19697529120447704 +winner goal 0.35669538951370056 +trick size 0.3423520754152845 +choice vein 0.1350092765969935 +hymn conquest 0.36407864118688726 +endurance band 0.6492269442351628 +flower endurance 0.19697529120447704 +hole agreement 0.7942847517028084 +doctor temper 0.16020920339225947 +fraternity door 0.13500927659699347 +task woman 0.16020920339225947 +fraternity baseball 0.2556420772721466 +cent size 0.36407864118688726 +presence door 1.7342092604611035 +mouse management 0.16020920339225947 +liquor century 0.30037343387475895 +task straw 0.31897798459332355 +night chapter 2.013654667322025 +pollution president 0.4329064264435386 +gun trick 0.7149148965783613 +bath trick 1.2494440120866794 +diet apple 0.839183181328697 +chapter tail 0.8637292973875247 +course stomach 0.2054316723078155 +hymn straw 0.31897798459332355 +dentist colonel 1.0815506406396596 +wife straw 0.3117984028655599 +hole wife 0.36095907970262997 +pupil president 0.9960631001220657 +bath wife 0.4147573345024167 +people cent 0.36407864118688726 +formula log 1.1451208169829248 +woman fur 0.3982812165927711 +apple sunshine 0.19105746868229392 +gun dawn 0.395337318061702 +meal waist 0.19105746868229392 +camera president 0.45987056899802703 +liquor band 0.2755527674320152 +stomach vein 1.5870768574562824 +gun fur 0.6052012498969851 +couch baseball 1.0264625089653192 +worker camera 0.49026008482517114 +deck mouse 0.7100380174097359 +rice boy 0.977370101807824 +people gun 0.10270084755156976 +cliff tail 0.3649419893623902 +ankle window 0.22736167465896276 +princess island 0.46537220931671974 +container mouse 0.9251455631088349 +wagon container 2.0999762301327727 +dollar people 0.36407864118688726 +bath balloon 0.9284990687512027 +stomach bedroom 0.15615056821070775 +bicycle bedroom 0.9040831971175332 +log bath 0.6269526791603499 +bowl tail 2.237091400541139 +go come 0.804753356713453 +take steal 1.8886054756993262 +make construct 2.3649091334324774 +keep possess 0.19697529120447704 +leave go 1.9942739092554957 +gather meet 0.9074012035963896 +add divide 0.2556420772721466 +take carry 0.9889731393471137 +take possess 0.36407864118688726 +steal buy 4.505857338353433 +kill hang 0.95202359923791 +get put 0.36407864118688726 +take leave 0.7136030273883416 +give put 0.36407864118688726 +try think 0.8687179483750793 +keep give 0.19697529120447704 +begin go 0.7947096478475495 +get buy 0.36407864118688726 +collect save 1.1422403196853046 +join add 0.36407864118688726 +put hang 0.36407864118688726 +go sell 1.0104168570869374 +give steal 0.36407864118688726 +add build 0.2556420772721466 +give know 0.36407864118688726 +water shortage 0.30037343387475895 +horse wedding 1.3331281080820678 +plays losses 1.8246653171354872 +classics advertiser 0.911958804912311 +latin credit 0.9668431633042022 +mistake error 4.160430687482816 +disease plague 2.1218571758258986 +sake shade 1.0314857111833453 +saints observatory 0.42074938470748185 +treaty wheat 0.19697529120447704 +texas death 0.04891254693397154 +admiralty intensity 0.36407864118688726 +heroin marijuana 3.597286824104282 +apollo myth 0.36407864118688726 +film cautious 0.13500927659699347 +exhibition art 1.0292210931190207 +chocolate candy 1.6656186063776608 +gospel church 0.4405466634589982 +english french 3.890758499536465 +exile church 0.5720738220165392 +adventure flood 0.9825814731644171 +radar plane 1.3103035222538857 +pacific ocean 4.682140552130717 +scotch liquor 3.253769863734995 +kennedy gun 0.8397688020348207 +garfield cat 2.2813927093999715 +scale budget 2.826323080405338 +rhythm blues 2.005176383927214 +rich privileges 0.36407864118688726 +marble marching 0.30037343387475895 +medium organization 0.7351851523854076 +pennsylvania writer 0.47401420564661445 +hamlet poet 0.2732573723557841 +mud soil 3.287629433387621 +slaves insured 1.0815506406396596 +integration dignity 0.36407864118688726 +money quota 1.72703070303876 +session surprises 0.6695526397665916 +billion campaigning 0.36407864118688726 +forswearing perjury 1.1422403196853046 +bulgarian nurses 1.0037576989929244 +faith judging 1.270019939375557 +france bridges 0.5642496658826199 +recreation dish 1.0045210625700702 +intelligence troubles 0.9408813114431751 +chaos death 1.475908311078983 +sydney hancock 0.46537220931671974 +espionage passport 0.36407864118688726 +pipe convertible 1.001690101149415 +salute patterns 0.8754228300199586 +radiation costumes 0.17184931871167192 +sale rental 2.606846917589479 +open close 0.5562977434107123 +mirror duel 0.7310226809303961 +probability hanging 0.30037343387475895 +africa theater 0.3958042205052336 +hell heaven 3.4304179580612995 +mussolini italy 0.46537220931671974 +composer beethoven 4.284512340125764 +brussels sweden 3.21281035244552 +neutral parish 0.34433060966051665 +emotion taxation 0.36407864118688726 +louisiana simple 0.46537220931671974 +quarantine disease 1.271843611081446 +bronze suspicion 0.859230835449065 +pearl interim 0.30037343387475895 +artist paint 0.4823030946904 +relay family 1.3194620839937972 +art mortality 0.31897798459332355 +food investment 0.467241580744394 +alt tenor 0.3291721277072254 +catholics protestant 3.283312831113179 +coil ashes 0.340521668656532 +poland russia 3.6221099244011117 +explosive builders 1.4125353609308051 +aeronautics plane 0.22250658557040853 +charge sentence 0.7946436830384687 +drink alcohol 2.358134267374985 +stability species 0.36407864118688726 +colonies depression 0.2576966371526558 +easter preference 0.2556420772721466 +genius intellect 3.3390437240274653 +jurisdiction law 0.25564207727214655 +saints repeal 0.6310057475509494 +conspiracy campaign 0.6313485254779967 +operator extracts 0.7652793001229314 +physician action 0.14973611338783155 +electronics guess 1.269898342819268 +slavery diamond 0.4369271011536158 +quarterback sport 2.5436366346281223 +slavery klan 0.36407864118688726 +heroin shoot 0.15615056821070775 +birds disturbances 0.13500927659699347 +palestinians turks 1.0815506406396596 +citizenship court 0.2412701773332599 +immunity violation 0.8123783804785741 +chile plates 1.4866697508591937 +abraham stranger 1.0815506406396596 +kansas city 3.1849178159516525 +month year 2.0676709916242797 +month day 3.108844302206073 +amateur actor 1.0815506406396596 +transmission maxwell 1.2909847289801557 +drawing music 1.0580439414389669 +exile pledges 0.7644563467440748 +adventure sixteen 0.36407864118688726 +exile threats 0.9431161286392451 +concrete wings 0.6274508231866592 +seizure bishops 0.30037343387475895 +submarine sea 0.19105746868229392 +villa mayor 0.8373270312790468 +nature forest 0.3329612373515818 +chronicle young 0.08286969439724642 +radical bishops 1.004001757956516 +pakistan radical 0.23379552018771538 +fire water 4.178960066565967 +gossip nuisance 0.8241820530135645 +con examiner 0.9364047026092104 +satellite space 0.3948016794274396 +miniature statue 2.851783642618822 +spill pollution 1.4104361564310692 +minister council 0.1602092033922595 +landscape mountain 0.3243346521597352 +religion remedy 0.5659059993548687 +ship storm 0.11436189327583708 +college scientist 0.2951902345390629 +afghanistan wise 0.3958042205052336 +trinity religion 2.1525272999316662 +homer odyssey 1.362814459191167 +parish clue 0.2556420772721466 +acre earthquake 0.19397757367613666 +football justice 0.6640411829974631 +gambling money 0.36407864118688726 +cardinals villages 0.33560361543587364 +life death 2.7217390708617537 +artillery sanctions 0.7254213229272097 +cell brick 0.8472561278200167 +adventure rails 0.11665945809838446 +militia weapon 0.2556420772721466 +manufacturer meat 0.27364038484821396 +damages reaction 0.9448260694338039 +sea fishing 0.19697529120447704 +broadcasting athletics 0.9986557879088114 +mystery expedition 0.5658216030444186 +pig blaze 0.38697701540695967 +riverside vietnamese 0.34433060966051665 +pork blaze 0.22061352205382648 +feet international 0.9254862269879556 +radical uniform 0.24615561032735345 +mozart wagner 4.232185867050844 +soccer boxing 3.6981178366321403 +radical roles 0.30037343387475895 +sales season 0.36407864118688726 +homeless refugees 1.0037576989929244 +pakistan repair 2.2686786387603006 +athens painting 0.22650458897981562 +tiger woods 0.8436010126884574 +aircraft plane 3.0774120995595804 +enterprise bankruptcy 0.8493349538352748 +homer springfield 0.37701757072481573 +coin awards 0.36407864118688726 +rhodes native 0.9002142706524286 +gasoline stock 1.0679222078249277 +rapid singapore 0.24606425104057852 +pop sex 0.2889618869773678 +medicine bread 1.2045351666739965 +asia animal 0.34433060966051665 +pop clubhouse 0.28257550054242997 +earth poles 2.640826218773492 +day independence 0.633571365074685 +controversy pitch 0.9972520077746557 +stock gasoline 1.0679222078249277 +composers mozart 4.284512340125764 +tone piano 3.0962588439575023 +paris chef 0.34433060966051665 +bankruptcy chronicle 0.36407864118688726 +israel terror 0.34433060966051665 +chemistry patients 0.2777535559947615 +munich constitution 0.19341276425937487 +piano theater 0.558606641698885 +religion abortion 0.7135365585941329 +government transportation 1.569831304744827 +color wine 2.5784790336140784 +boat negroes 0.49026008482517114 +republicans friedman 1.0288697669914837 +politics brokerage 0.30037343387475895 +russian stalin 1.0037576989929244 +love philip 0.7716102739387505 +jamaica queens 3.1062593194162273 +bridge rowing 1.0422074594162232 +berlin germany 3.2019443351376444 +funeral death 0.7622448910811069 +albert einstein 1.0815506406396596 +gulf shore 0.31375469999779526 +ecuador argentina 4.982615607156767 +britain france 3.750326422354081 +sports score 0.6191328996331462 +socialism capitalism 3.6759891479232376 +treaty peace 4.2831395542817425 +exchange market 0.8104661355783385 +marriage anniversary 0.36407864118688726 +love sex 2.8975402718549934 +tiger cat 3.4843744934232688 +tiger tiger 4.500168961942224 +book paper 2.132201141501692 +computer keyboard 1.417850857392432 +computer internet 1.0643011486219396 +plane car 1.8198091321289418 +train car 1.7546350788325926 +television radio 3.9366951392976395 +media radio 2.918728238259977 +bread butter 2.195582134523896 +cucumber potato 2.5967478858999518 +doctor nurse 2.8926187183866827 +professor doctor 2.6910187328305093 +company stock 1.1347691799341855 +stock market 0.9129901801302773 +stock phone 0.8360832248240064 +stock CD 0.7679693349917512 +stock jaguar 1.3961760268961918 +stock egg 0.970214671666641 +stock life 0.45914180934149207 +book library 2.2228658536280497 +bank money 1.705491624375175 +wood forest 3.999773687740956 +money cash 3.0751862054764247 +professor cucumber 0.6221225105861986 +king cabbage 0.5631042869919862 +king queen 4.197528959326812 +king rook 4.086957546461111 +bishop rabbi 2.9809564801246795 +Jerusalem Israel 3.21281035244552 +Jerusalem Palestinian 0.46537220931671974 +holy sex 0.09021795947527439 +fuck sex 3.1532483879857183 +football soccer 4.20492219524582 +football basketball 3.3953919602140643 +football tennis 3.130588448862342 +tennis racket 1.2328770575397316 +Arafat terror 1.0037576989929244 +Arafat Jackson 3.375040794871035 +movie star 0.5464790284290755 +movie popcorn 0.40122543745929534 +movie critic 0.49026008482517114 +movie theater 0.8856480130947025 +physics proton 0.11436189327583708 +physics chemistry 2.4319807744101696 +space chemistry 0.33132726825503417 +alcohol chemistry 1.2780546731480094 +vodka gin 3.365005915965756 +vodka brandy 3.3708785073679284 +drink car 0.1778080199274208 +drink ear 1.1781250852792682 +drink mouth 1.0322052809952733 +drink mother 0.8604581826542952 +car automobile 3.2401645050114083 +tool implement 2.018235638973914 +lad brother 1.0815506406396596 +chord smile 1.1973036187325161 +money dollar 3.081387800531617 +money currency 3.093373505020784 +money wealth 4.421641409474553 +money property 3.070064858769891 +money possession 1.5116765628402165 +money bank 1.705491624375175 +money deposit 3.356636024389889 +money withdrawal 0.36407864118688726 +money laundering 0.36407864118688726 +money operation 0.33271653108094035 +tiger jaguar 3.678124252293267 +tiger feline 3.198266348043998 +tiger carnivore 2.2859274006245016 +tiger mammal 1.8148056898879792 +tiger animal 1.1813455565351643 +tiger organism 0.6266557228320272 +tiger fauna 1.0821463549554793 +tiger zoo 0.49026008482517114 +psychology psychiatry 2.327564162074832 +psychology anxiety 0.36407864118688726 +psychology fear 0.36407864118688726 +psychology depression 0.4460118663970692 +psychology clinic 0.30037343387475895 +psychology doctor 0.5550632067525018 +psychology mind 1.5293941707171712 +psychology health 0.36407864118688726 +psychology science 2.2095936017551465 +psychology discipline 1.8698700306433464 +psychology cognition 1.380409702106017 +planet star 3.36722125067595 +planet constellation 1.8430883369175326 +planet moon 3.37699562234492 +planet sun 3.3803269918132486 +planet galaxy 0.40529392866994696 +planet space 0.3294155069237874 +planet astronomer 0.892739740042242 +precedent example 3.8761237373264508 +precedent information 2.211571154846312 +precedent cognition 1.1080960060014846 +precedent law 3.574440370729892 +precedent collection 2.2782495643618987 +precedent group 0.9814091310918869 +precedent antecedent 1.4376158086506416 +cup coffee 2.1400938610553775 +cup tableware 3.0064369374487305 +cup article 2.621206413407417 +cup artifact 0.63873202001779 +cup object 0.4970231143320223 +cup drink 2.4725627549054305 +cup food 1.2688129271207176 +cup substance 0.8408124505439639 +cup liquid 1.975422657377513 +jaguar cat 3.508907628697493 +jaguar car 0.49026008482517114 +energy secretary 0.10086522709181164 +energy laboratory 0.10086522709181164 +computer laboratory 0.46537220931671974 +weapon secret 0.25564207727214655 +FBI fingerprint 0.36407864118688726 +FBI investigation 0.36407864118688726 +investigation effort 2.081038734216205 +Mars water 0.3026148880772395 +Mars scientist 0.2462082647358751 +news report 3.279250155266378 +canyon landscape 0.41656132112803906 +image surface 1.0666876109613237 +discovery space 0.32472450140456605 +water seepage 0.30037343387475895 +sign recess 0.8621182683503086 +Wednesday news 0.36407864118688726 +mile kilometer 3.107245794456335 +territory surface 1.7562864617806977 +atmosphere landscape 1.373298439605491 +president medal 0.11665945809838446 +war troops 0.36407864118688726 +record number 2.252919322863324 +skin eye 1.0494403279793494 +Japanese American 2.265201092060214 +theater history 0.42610205027239556 +prejudice recognition 2.6242413866594716 +decoration valor 0.30037343387475895 +century year 2.0676709916242797 +century nation 0.31897798459332355 +delay racism 0.8814342584058545 +delay news 0.535769837904622 +minister party 0.7865949864848173 +peace plan 0.30037343387475895 +minority peace 1.1752347614502325 +attempt peace 0.36407864118688726 +government crisis 0.7089282680178047 +deployment departure 1.0747452168526301 +deployment withdrawal 3.5615458964332887 +energy crisis 1.096500200930756 +announcement news 1.9150677107748844 +announcement effort 0.36407864118688726 +stroke hospital 0.26673677878958657 +disability death 1.1165998290958845 +victim emergency 0.2951902345390629 +treatment recovery 0.9627834063497385 +journal association 0.21724193926318067 +doctor personnel 0.16020920339225947 +doctor liability 0.1602092033922595 +liability insurance 1.2319852580570196 +school center 1.3744979193499542 +reason hypertension 1.2365656547555273 +reason criterion 1.0078573447126216 +hundred percent 0.36407864118688726 +Harvard Yale 4.50099433814648 +hospital infrastructure 0.2556420772721466 +death row 0.5999187213482486 +death inmate 0.04891254693397155 +life term 3.3425195633684406 +word similarity 1.017172725938223 +board recommendation 0.08286969439724642 +OPEC country 1.469484393137595 +peace atmosphere 1.1123150666459753 +peace insurance 3.862306476115468 +territory kilometer 0.19697529120447704 +travel activity 0.6927174389647408 +competition price 0.7357908150743577 +consumer energy 0.10086522709181164 +car flight 0.4276730015414733 +credit card 1.5277570872663766 +credit information 1.7105706376027061 +hotel reservation 0.14967761912267458 +registration arrangement 0.9283984214487284 +arrangement accommodation 1.4006989252523754 +type kind 3.4139364695002326 +arrival hotel 0.2951902345390629 +bed closet 2.1827338422026186 +closet clothes 0.9040831971175332 +situation conclusion 0.5480700250789479 +situation isolation 1.1384927026545948 +impartiality interest 0.501793464445114 +direction combination 0.700052379028107 +street place 0.8226451515604684 +street avenue 3.869811260136907 +street block 0.7754841115109058 +street children 0.3277970732238858 +listing proximity 0.49973611748532754 +listing category 0.580458702292053 +cell phone 3.973062624153233 +production hike 0.7730227216778685 +benchmark index 2.7918785179677057 +media trading 0.8605228198979141 +media gain 0.7224313449074402 +dividend payment 2.720311612052927 +dividend calculation 0.36407864118688726 +calculation computation 3.595280377691735 +currency market 0.28381951831194885 +OPEC oil 0.36407864118688726 +oil stock 1.161070791631155 +announcement production 0.8654828710597733 +announcement warning 1.8463891713261444 +profit warning 0.36407864118688726 +profit loss 2.9168387058274203 +dollar yen 1.9135111891755874 +dollar buck 4.295991188409008 +dollar profit 0.36407864118688726 +dollar loss 0.3432773398410184 +network hardware 0.9848144872133061 +phone equipment 2.1849670424724263 +equipment maker 0.2951902345390629 +five month 1.49566852576767 +report gain 0.36407864118688726 +liquid water 3.4551752599787133 +baseball season 0.25564207727214655 +game victory 0.9097348231165066 +game team 0.31411407964442867 +marathon sprint 1.11135054191836 +game series 2.489014860460632 +game defeat 0.7352913579957236 +seven series 0.8351912537175312 +seafood sea 0.19105746868229392 +seafood food 1.804845517539734 +seafood lobster 2.8941619187689778 +lobster food 1.7349706417120183 +lobster wine 0.839183181328697 +food preparation 0.855513528851718 +video archive 0.7903036093293658 +start year 1.227024731939698 +start match 0.7363502366467908 +game round 2.776768104963796 +boxing round 2.307407316245182 +championship tournament 2.895097831212065 +line insurance 1.7920011298061382 +day summer 2.126509249301813 +summer drought 2.1466171726234484 +summer nature 0.2838195183119489 +nature environment 0.7243303043818176 +environment ecology 3.634231365431129 +nature man 0.6371338942463334 +man governor 0.9230173770073437 +murder manslaughter 3.5065411093680017 +soap opera 0.2696248919164052 +opera performance 0.2742401434325077 +life lesson 0.6181050579267522 +focus life 0.7666296701614019 +production crew 0.3432773398410184 +television film 2.8109478606138647 +lover quarrel 0.3685019557744241 +viewer serial 0.6484453227451429 +population development 1.6396998075959643 +morality importance 1.5780368057622451 +morality marriage 0.8018230339960195 +Mexico Brazil 3.750326422354081 +gender equality 0.9346722054339582 +change attitude 0.6527357057419179 +family planning 0.3432773398410184 +opera industry 0.30037343387475895 +sugar approach 0.2803943806045449 +practice institution 3.7424339977276633 +ministry culture 1.2786485373119878 +problem challenge 1.4279749773536625 +size prominence 1.1037016637174222 +country citizen 0.37701757072481573 +development issue 1.17831250570403 +experience music 1.1617184927178046 +music project 1.2085672515975683 +glass metal 0.8445298862476569 +aluminum metal 2.845265968702151 +chance credibility 0.8914627557656214 +exhibit memorabilia 1.1973036187325161 +rock jazz 3.2400431346397442 +museum theater 0.7046422068760644 +observation architecture 1.1278030128918872 +space world 0.50475524987456 +preservation world 0.7754582897074144 +admission ticket 1.3519948322962985 +shower thunderstorm 2.6900705247668277 +shower flood 1.699899959372991 +disaster area 0.8280693057734527 +governor office 0.35332755020173046 +architecture century 0.31897798459332355